-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
59 lines (48 loc) · 2.06 KB
/
Copy pathDirectory.Build.props
File metadata and controls
59 lines (48 loc) · 2.06 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
<Project>
<!--
Shared build configuration for every project in the repository.
Package-specific metadata lives in src/Directory.Build.props.
-->
<PropertyGroup>
<LangVersion>13.0</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<InvariantGlobalization>true</InvariantGlobalization>
<!-- Warnings are defects. Nothing ships with a warning. -->
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsNotAsErrors></WarningsNotAsErrors>
<NoWarn></NoWarn>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>Recommended</AnalysisMode>
<!--
Code style is enforced by the dedicated `dotnet format` CI job rather than
by the compiler, so a style drift never masks a correctness warning.
-->
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
<!-- Reproducible builds. -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NeutralLanguage>en-US</NeutralLanguage>
<!-- Central package management. -->
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
<ArtifactsPath>$(MSBuildThisFileDirectory)artifacts</ArtifactsPath>
<UseArtifactsOutput>false</UseArtifactsOutput>
</PropertyGroup>
<!-- Shared version and identity information. -->
<PropertyGroup>
<VersionPrefix>0.1.0</VersionPrefix>
<Authors>Mohamed Benziza</Authors>
<Company>Mohamed Benziza</Company>
<Product>QueryGuard.NET</Product>
<Copyright>Copyright (c) 2026 Mohamed Benziza</Copyright>
<RepositoryUrl>https://github.com/Benziza/queryguard-dotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<PropertyGroup>
<IsPackable>false</IsPackable>
<IsTestProject>false</IsTestProject>
</PropertyGroup>
</Project>