-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (25 loc) · 1.32 KB
/
Copy pathDirectory.Build.props
File metadata and controls
29 lines (25 loc) · 1.32 KB
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
<Project>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- XML-doc-comment warnings stay warnings for now (large public surface, incomplete docs):
CS1591 missing doc, CS1573 missing <param>, CS1572 stray <param>, CS1574/CS1580/CS1584 cref,
CS1570/CS1571 malformed/duplicate. Everything else is enforced — incl. the test project,
whose generated test protocols then guard against codegen warnings like the CS8604 bug. -->
<WarningsNotAsErrors>$(WarningsNotAsErrors);CS1570;CS1571;CS1572;CS1573;CS1574;CS1580;CS1581;CS1584;CS1591</WarningsNotAsErrors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/kekekeks/NWayland</PackageProjectUrl>
<RepositoryUrl>https://github.com/kekekeks/NWayland</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- SourceLink -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedAllSources>true</EmbedAllSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>