forked from awesome-inc/FontAwesome.Sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
solution.targets
40 lines (36 loc) · 1.8 KB
/
solution.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<DebugType>full</DebugType>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<!-- https://docs.microsoft.com/en-us/dotnet/core/tools/csproj#nuget-metadata-properties -->
<Authors>Awesome Incremented and Contributors</Authors>
<Company>Awesome Incremented</Company>
<Product>FontAwesome.Sharp</Product>
<NeutralLanguage>en</NeutralLanguage>
<Copyright>Copyright © Awesome Incremented 2015-2020</Copyright>
<Description>A library for embbeding Font Awesome icons in WPF & Windows Forms applications</Description>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<!-- See GitHub project tags -->
<PackageTags>fontawesome;icon;material-design;dotnet-core;wpf;windows-forms</PackageTags>
<RepositoryUrl>https://github.com/awesome-inc/FontAwesome.Sharp</RepositoryUrl>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(SolutionDir)\key.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!-- Need to conditionally bring in references for .NET Framework, cf.:
- https://docs.microsoft.com/en-us/dotnet/core/tutorials/libraries#how-to-multitarget
-->
<ItemGroup Condition="$(TargetFramework.StartsWith('net4'))">
<!-- WPF -->
<Reference Include="System.Xaml" />
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<!-- Windows Forms -->
<Reference Include="System.Windows.Forms" />
</ItemGroup>
</Project>