forked from ncalc/ncalc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
43 lines (41 loc) · 1.84 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project>
<PropertyGroup>
<PackageIcon>NCalc.png</PackageIcon>
<Authors>Sebastien Ros and contributors</Authors>
<Copyright>Sebastien Ros and contributors</Copyright>
<Company>https://github.com/ncalc</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')">
<Version>3.4.244</Version>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="PolySharp" Version="1.14.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Roslynator.Analyzers" Version="4.12.4"/>
<PackageReference Include="Roslynator.CodeAnalysis.Analyzers" Version="4.12.4"/>
<PackageReference Include="Roslynator.Formatting.Analyzers" Version="4.12.4"/>
</ItemGroup>
<ItemGroup>
<Using Include="System" />
<Using Include="System.Text" />
<Using Include="System.Threading.Tasks" />
<Using Include="System.Collections" />
<Using Include="System.Collections.Concurrent" />
<Using Include="System.Collections.Generic" />
<Using Include="System.Globalization" />
<Using Include="System.Linq" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release' Or '$(Configuration)'=='SignedRelease'">
<Deterministic>true</Deterministic>
<DefineConstants>$(DefineConstants.Replace("TRACE", "NOTRACE"))</DefineConstants>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Optimize>true</Optimize>
</PropertyGroup>
</Project>