-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
69 lines (56 loc) · 2.52 KB
/
Copy pathDirectory.Build.props
File metadata and controls
69 lines (56 loc) · 2.52 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<Project>
<PropertyGroup>
<!-- Target Framework -->
<TargetFramework>net9.0</TargetFramework>
<!-- Language Settings -->
<LangVersion>latestMajor</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Code Quality -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />
<WarningsNotAsErrors />
<!-- Documentation -->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn> <!-- Missing XML comment for publicly visible type or member -->
<!-- Suppress .NET analyzer version warning -->
<_SkipUpgradeNetAnalyzersNuGetWarning>true</_SkipUpgradeNetAnalyzersNuGetWarning>
<!-- Deterministic Builds -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- SourceLink -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- NuGet package lock file -->
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<!-- Assembly Metadata -->
<Product>Flowrex</Product>
<Company>Gurame</Company>
<Copyright>Copyright © $(Company)</Copyright>
<!-- Package Settings -->
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/gurame/Flowrex</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<!-- SourceLink Packages -->
<PackageReference Include="Microsoft.SourceLink.GitHub" PrivateAssets="All"/>
<!-- Code Analysis (Microsoft Official Only) -->
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" PrivateAssets="All"/>
</ItemGroup>
<!-- Code Analysis for Libraries (only for packable projects) -->
<!-- PublicAPI analyzers temporarily disabled during early development - see ADR-0001 -->
<!--
<ItemGroup Condition="'$(IsPackable)' == 'true'">
<PackageReference Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" PrivateAssets="All"/>
</ItemGroup>
-->
<!-- Code Analysis -->
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
</PropertyGroup>
</Project>