-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
47 lines (45 loc) · 2.02 KB
/
Copy pathDirectory.Build.props
File metadata and controls
47 lines (45 loc) · 2.02 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project>
<!--
Repository-wide build policy for DotRocks.
Keep this aligned with .agents/contexts/conventions/STYLE_PROFILE.md.
-->
<PropertyGroup Label="Language and analysis">
<!-- Pin C# 14 for net10.0 runtime projects and netstandard2.0 analyzers. -->
<LangVersion>14.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AnalysisLevel>latest</AnalysisLevel>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Label="Determinism and reproducibility">
<Features>strict</Features>
<DebugType>portable</DebugType>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>low</NuGetAuditLevel>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>
<PropertyGroup Label="Package metadata defaults">
<Product>DotRocks</Product>
<Company>Aleksandr Pavlov</Company>
<Authors>Aleksandr Pavlov</Authors>
<Copyright>Copyright (c) Aleksandr Pavlov</Copyright>
<PackageProjectUrl>https://github.com/kidoz/dotrocks</PackageProjectUrl>
<RepositoryUrl>https://github.com/kidoz/dotrocks</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<IsPackable>false</IsPackable>
</PropertyGroup>
</Project>