-
Notifications
You must be signed in to change notification settings - Fork 1
/
Common.props
42 lines (38 loc) · 1.62 KB
/
Common.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
<Project>
<!-- Branding, ownership, licensing, project information -->
<PropertyGroup>
<Product>PolyKit</Product>
<Authors>Tenacom and contributors</Authors>
<Owners>Tenacom</Owners>
<Company>Tenacom</Company>
<Copyright>Copyright (c) $(Authors)</Copyright>
<Trademark />
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageProjectUrl>https://github.com/Tenacom/PolyKit</PackageProjectUrl>
<PackageReleaseNotes>See $(PackageProjectUrl)/blob/main/CHANGELOG.md</PackageReleaseNotes>
<RepositoryUrl>https://github.com/Tenacom/PolyKit</RepositoryUrl>
<IconInPackage>true</IconInPackage>
<ReadmeFileInPackage>true</ReadmeFileInPackage>
<LicenseFileInPackage>true</LicenseFileInPackage>
<ThirdPartyNoticeInPackage>true</ThirdPartyNoticeInPackage>
<UseVersionFile>false</UseVersionFile>
</PropertyGroup>
<!-- Common build options -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>false</ImplicitUsings>
<Deterministic>true</Deterministic>
<Nullable>enable</Nullable>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CodeAnalysisTreatWarningsAsErrors>false</CodeAnalysisTreatWarningsAsErrors>
<CLSCompliant>true</CLSCompliant>
<ComVisible>false</ComVisible>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<!-- Solution-wide build options -->
<PropertyGroup>
<UsePublicApiAnalyzers>false</UsePublicApiAnalyzers>
</PropertyGroup>
</Project>