-
-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
Directory.Build.Props
27 lines (24 loc) · 1.12 KB
/
Directory.Build.Props
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
<Project>
<!-- Project properties -->
<PropertyGroup>
<TargetFrameworks>net452;net46;net47;netcoreapp3.0;netcoreapp3.1</TargetFrameworks>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<AutoGenerateBindingRedirects Condition=" $(TargetFramework.StartsWith('net4')) ">true</AutoGenerateBindingRedirects>
<LangVersion>8.0</LangVersion>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<NoError>$(NoError);CS1591</NoError>
<UseWPF>true</UseWPF>
</PropertyGroup>
<!-- Add the references for all projects and targets -->
<ItemGroup>
<PackageReference Include="JetBrains.Annotations" Version="2020.*" PrivateAssets="All" />
<PackageReference Include="WpfAnalyzers" Version="2.4.*" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Remove="**\*.png;**\*.jpg;**\*.ico;**\*.ttf" />
<Resource Include="**\*.png;**\*.jpg;**\*.ico;**\*.ttf" />
</ItemGroup>
</Project>