-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (30 loc) · 1.69 KB
/
Directory.Build.props
File metadata and controls
30 lines (30 loc) · 1.69 KB
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
<Project>
<PropertyGroup>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<Version>0.1.0-alpha.7</Version>
<Authors>ExplodingUFO</Authors>
<Company>ExplodingUFO</Company>
<RepositoryUrl>https://github.com/ExplodingUFO/Videra</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/ExplodingUFO/Videra</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>icon.png</PackageIcon>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- The repo still carries a large backlog of analyzer findings across referenced projects.
Keep local Debug builds usable by making warnings-as-errors opt-in instead of always-on. -->
<WarningsAsErrorsInDebug Condition="'$(WarningsAsErrorsInDebug)' == ''">false</WarningsAsErrorsInDebug>
<TreatWarningsAsErrors Condition="'$(Configuration)' == 'Debug' and '$(WarningsAsErrorsInDebug)' == 'true'">true</TreatWarningsAsErrors>
<RunAnalyzersDuringBuild>true</RunAnalyzersDuringBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.203" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.203" PrivateAssets="all" />
<PackageReference Include="SonarAnalyzer.CSharp" Version="10.24.0.138807" PrivateAssets="all" />
</ItemGroup>
</Project>