37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
|
|
<Project>
|
||
|
|
<PropertyGroup Condition="'$(ArtifactsPath)' == ''">
|
||
|
|
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<VersionPrefix>1.0.0</VersionPrefix>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
||
|
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
||
|
|
<WarningsAsErrors Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</WarningsAsErrors>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<PropertyGroup Label="NuGet Package Info">
|
||
|
|
<Authors>The Geekeey Team</Authors>
|
||
|
|
<Copyright>Copyright (c) The Geekeey Team 2026</Copyright>
|
||
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||
|
|
<IncludeSymbols>true</IncludeSymbols>
|
||
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.SourceLink.Gitea" PrivateAssets="all" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<NuGetAuditLevel>moderate</NuGetAuditLevel>
|
||
|
|
<NuGetAuditMode>all</NuGetAuditMode>
|
||
|
|
</PropertyGroup>
|
||
|
|
</Project>
|