-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
43 lines (37 loc) · 2.05 KB
/
Copy pathDirectory.Build.props
File metadata and controls
43 lines (37 loc) · 2.05 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
<Project>
<!-- Shared settings for every project in the repo (src, samples, templates). -->
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<AnalysisLevel>latest-recommended</AnalysisLevel>
<!-- Deterministic, reproducible builds. ContinuousIntegrationBuild is turned on in CI by the
$(CI)-gated PropertyGroup below (normalizes embedded/SourceLink paths); it is intentionally
left off for local builds so IDE/incremental builds keep machine-local paths. -->
<Deterministic>true</Deterministic>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Build DX + supply-chain audit (mirrors dotnet-sdk). -->
<ProduceReferenceAssembly>true</ProduceReferenceAssembly>
<AccelerateBuildsInVisualStudio>true</AccelerateBuildsInVisualStudio>
<NuGetAudit>true</NuGetAudit>
<NuGetAuditLevel>moderate</NuGetAuditLevel>
<!-- Package identity (shared across every publishable library). -->
<Company>ResQ Systems, Inc.</Company>
<Authors>ResQ Systems</Authors>
<Product>ResQ Building Blocks</Product>
<Copyright>Copyright (c) ResQ Systems, Inc.</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/resq-software/dotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/resq-software/dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>resq;clean-architecture;hexagonal;ddd;cqrs;building-blocks</PackageTags>
</PropertyGroup>
<!-- CI-only: ContinuousIntegrationBuild normalizes source paths for deterministic, SourceLink-correct
output (GitHub Actions and most CI providers export CI=true). Off locally so IDE/incremental builds
keep machine-local paths. -->
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>