-
Notifications
You must be signed in to change notification settings - Fork 1
/
Directory.Build.props
37 lines (34 loc) · 1.64 KB
/
Directory.Build.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
<Project>
<PropertyGroup>
<Title>Axolotl</Title>
<Version>9.0.0</Version>
<Authors>radioActive DROID</Authors>
<Description>Personal shared utility library</Description>
<RepositoryType>git</RepositoryType>
<PackageTags>Library;Utility</PackageTags>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/gpproton/Axolotl</RepositoryUrl>
<PackageProjectUrl>https://github.com/gpproton/Axolotl</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<LicenseFile>$(MSBuildThisFileDirectory)LICENSE</LicenseFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<IncludeSymbols>true</IncludeSymbols>
<Copyright>©Axolotl Contributors. All rights reserved.</Copyright>
<Features>strict</Features>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">True</ContinuousIntegrationBuild>
<DebugType>embedded</DebugType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<PackageIcon>icon.jpg</PackageIcon>
</PropertyGroup>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>13.0</LangVersion>
</PropertyGroup>
</Project>