build: initial project release
Some checks failed
default / dotnet default workflow (push) Failing after 30s
Some checks failed
default / dotnet default workflow (push) Failing after 30s
This commit is contained in:
commit
8f91cee8a3
59 changed files with 4764 additions and 0 deletions
28
Directory.Build.props
Normal file
28
Directory.Build.props
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<Project>
|
||||
<PropertyGroup Condition="'$(ArtifactsPath)' == ''">
|
||||
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</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 DateTime.Now.Year</Copyright>
|
||||
<RepositoryUrl>https://code.geekeey.de/geekeey/process</RepositoryUrl>
|
||||
<RepositoryType>git</RepositoryType>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
<NuGetAuditLevel>moderate</NuGetAuditLevel>
|
||||
<NuGetAuditMode>all</NuGetAuditMode>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue