-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
21 lines (21 loc) · 898 Bytes
/
Directory.Build.props
File metadata and controls
21 lines (21 loc) · 898 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project>
<!--
https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-your-build?view=vs-2022
-->
<PropertyGroup>
<RootNamespace>Castle.DynamicProxy</RootNamespace>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<Deterministic>true</Deterministic>
<DebugType>embedded</DebugType>
<AnalysisLevel>latest</AnalysisLevel>
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<AnalysisModeStyle>All</AnalysisModeStyle>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<CodeAnalysisTreatWarningsAsErrors>true</CodeAnalysisTreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<ContinuousIntegrationBuild Condition=" '$(CI)' == 'true' ">true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>