-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
46 lines (39 loc) · 1.69 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
44
45
46
<Project>
<PropertyGroup>
<LangVersion>preview</LangVersion>
<Nullable>enable</Nullable>
<IsPublishable>false</IsPublishable>
<NuGetAudit>true</NuGetAudit>
<OutputType>library</OutputType>
<DefineConstants>CONTRACTS_FULL</DefineConstants>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<CheckEolTargetFramework>true</CheckEolTargetFramework>
<SuppressTfmSupportBuildWarnings>false</SuppressTfmSupportBuildWarnings>
<NoWarn>NU1507</NoWarn>
</PropertyGroup>
<PropertyGroup Label="Package info">
<ProductName>Qowaiv Validation</ProductName>
<Description>Qowaiv Validation supports a generic interface for (domain) model validation.</Description>
<Authors>Corniel Nobel</Authors>
<Owners>Qowaiv community</Owners>
<Company>Qowaiv community</Company>
<Copyright>Copyright © Qowaiv community 2013-current</Copyright>
</PropertyGroup>
<PropertyGroup Label="Signing">
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)/build/Qowaiv.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup Label="Code generation">
<PackageReference Include="PolySharp" PrivateAssets="all" />
<PackageReference Include="Qowaiv.Diagnostics.Contracts" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Label="Analyzers">
<PackageReference Include="AsyncFixer" PrivateAssets="all" />
<PackageReference Include="DotNetProjectFile.Analyzers" PrivateAssets="all"/>
<PackageReference Include="SonarAnalyzer.CSharp" PrivateAssets="all" />
</ItemGroup>
<ItemGroup Label="Additional files">
<AdditionalFiles Include="*.csproj" Visible="false" />
</ItemGroup>
</Project>