-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
38 lines (34 loc) · 1.64 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
<Project>
<PropertyGroup>
<LangVersion>8.0</LangVersion>
<!--package-->
<Authors>vip32</Authors>
<Description>Quartz.Web</Description>
<Product>Quartz.Web</Product>
<Copyright>Copyright 2020 (c) vip32. All rights reserved.</Copyright>
<!--sourcelink https://github.com/dotnet/sourcelink -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<IncludeSymbols>false</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\..\GlobalSuppressions.cs" Link="GlobalSuppressions.cs" />
</ItemGroup>
<PropertyGroup>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors></WarningsAsErrors>
<CodeAnalysisRuleSet></CodeAnalysisRuleSet>
<UseSharedCompilation>true</UseSharedCompilation> <!--roslyn build speed-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Net.Compilers" Version="3.5.0" /> <!--c#8 roslyn -->
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="3.5.0" /> <!--c#8 roslyn -->
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="2.9.8" />
<PackageReference Include="EnsureThatCore" Version="1.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="SecurityCodeScan" Version="3.5.0" PrivateAssets="all" />
</ItemGroup>
</Project>