-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathDirectory.Build.props
20 lines (20 loc) · 936 Bytes
/
Directory.Build.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Authors>Jean Gatto (@jeangatto)</Authors>
<MaintainerEmail>jean_gatto@hotmail.com</MaintainerEmail>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jeangatto/ASP.NET-Core-Vertical-Slice-Architecture</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<AnalysisLevel>latest</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
</Project>