-
-
Notifications
You must be signed in to change notification settings - Fork 221
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
18 lines (17 loc) · 870 Bytes
/
Directory.Build.props
File metadata and controls
18 lines (17 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<Project>
<PropertyGroup>
<NoWarn>$(NoWarn);CS8632;RS0016;IDE0130;REO12004</NoWarn>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<DefineConstants>JETBRAINS_ANNOTATIONS</DefineConstants>
<LangVersion>preview</LangVersion>
<Features>InterceptorsPreview</Features>
<InterceptorsNamespaces>$(InterceptorsNamespaces);Microsoft.Extensions.Logging.AutoLoggerMessage</InterceptorsNamespaces>
<AutoLoggerMessageGenerator_GenerateSkipEnabledCheck>false</AutoLoggerMessageGenerator_GenerateSkipEnabledCheck>
</PropertyGroup>
<PropertyGroup Condition="!$(MSBuildProjectName.EndsWith('Tests'))">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<AssemblyAttribute Include="System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage"/>
</ItemGroup>
</Project>