-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (20 loc) · 1004 Bytes
/
Directory.Build.props
File metadata and controls
20 lines (20 loc) · 1004 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<!-- Centralized package metadata for all NuGet packages -->
<PropertyGroup>
<Version>1.0.1</Version>
<Authors>Peter Hajduch</Authors>
<Company>IRONCFG</Company>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Vanderhell/ironcfg</RepositoryUrl>
<PackageProjectUrl>https://github.com/Vanderhell/ironcfg</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<!-- Keep CI warning-free; we rely on explicit analyzers/gates instead of XML-doc warnings. -->
<NoWarn>$(NoWarn);1591;0168;0219;1998;8600;8602;8603;8604;8618;CA2014;xUnit2002</NoWarn>
</PropertyGroup>
</Project>