-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
59 lines (49 loc) · 2.32 KB
/
Directory.Build.props
File metadata and controls
59 lines (49 loc) · 2.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<Project>
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<NoWarn>$(NoWarn);CA1014;CA1303</NoWarn>
</PropertyGroup>
<PropertyGroup>
<Company>Manuel Mayer</Company>
<Authors>Manuel Mayer</Authors>
<Product>HeadsetControl.NET</Product>
<Copyright>Copyright (C) HeadsetControl.NET Contributors</Copyright>
<PackageProjectUrl>https://github.com/manuelmayer-dev/HeadsetControl.NET</PackageProjectUrl>
<RepositoryUrl>https://github.com/manuelmayer-dev/HeadsetControl.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>0.4.0</Version>
</PropertyGroup>
<PropertyGroup>
<SupportedRuntimeIdentifiers>osx-arm64;osx-x64;linux-arm64;linux-x64;win-x64</SupportedRuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE"
Pack="true"
PackagePath="\"
Visible="false"
Condition="Exists('$(MSBuildThisFileDirectory)LICENSE')" />
<None Include="$(MSBuildThisFileDirectory)README.md"
Pack="true"
PackagePath="\"
Visible="false"
Condition="Exists('$(MSBuildThisFileDirectory)README.md')" />
</ItemGroup>
</Project>