-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
28 lines (28 loc) · 1.24 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
<Project>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<WarningsAsErrors>Nullable</WarningsAsErrors>
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
<Authors>na1307</Authors>
<Company>Bluehill</Company>
<Copyright>Copyright © Bluehill 2025</Copyright>
<Product>Bluehill.Analyzers</Product>
<PackageProjectUrl>https://na1307.github.io/Bluehill.Analyzers</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/na1307/Bluehill.Analyzers</RepositoryUrl>
<AssemblyVersion>1</AssemblyVersion>
<FileVersion>1.5.1</FileVersion>
<Version>1.5.1</Version>
<IncludeSourceRevisionInInformationalVersion>false</IncludeSourceRevisionInInformationalVersion>
<NoWarn>$(NoWarn);RS2008;SA1600</NoWarn>
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
<EnableNETAnalyzers>True</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>