-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
43 lines (37 loc) · 1.9 KB
/
Copy pathDirectory.Build.props
File metadata and controls
43 lines (37 loc) · 1.9 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<Project>
<PropertyGroup>
<!-- Shared identity -->
<Authors>ChocoStout</Authors>
<Company>ChocoStout</Company>
<Copyright>Copyright © ChocoStout $([System.DateTime]::UtcNow.Year)</Copyright>
<RepositoryUrl>https://github.com/ChocoStout/OverTone</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Shared version — bump here to release all packages together.
CI release builds override this from the pushed git tag (see release.yml). -->
<VersionPrefix>1.1.0</VersionPrefix>
<!-- Build quality -->
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>14.0</LangVersion>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!-- Deterministic builds + Source Link (Source Link ships in the .NET 8+ SDK).
ContinuousIntegrationBuild is enabled automatically on CI for normalized,
reproducible source paths embedded in the symbols. -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>portable</DebugType>
</PropertyGroup>
<!-- Shared NuGet packaging defaults. These only have an effect for packable projects
(the two class libraries); IsPackable=false projects simply ignore them. -->
<PropertyGroup>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/ChocoStout/OverTone</PackageProjectUrl>
<PackageReleaseNotes>Release notes: https://github.com/ChocoStout/OverTone/blob/main/CHANGELOG.md</PackageReleaseNotes>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>