generated from postsharp/PostSharp.Engineering.ProductTemplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
27 lines (20 loc) · 1.14 KB
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<RepoDirectory>$(MSBuildThisFileDirectory)</RepoDirectory>
<RepoKind>GitHub</RepoKind>
</PropertyGroup>
<Import Project="eng\Versions.props"/>
<Import Project="eng\Packaging.props"/>
<Import Sdk="PostSharp.Engineering.Sdk" Project="BuildOptions.props"/>
<Import Sdk="PostSharp.Engineering.Sdk" Project="StrongName.props"/>
<Import Sdk="PostSharp.Engineering.Sdk" Project="SourceLink.props"/>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- XML comment analysis is disabled due to project configuration ; more types in one file analysis is ignored. -->
<!-- TODO: Enable IDE0028 and IDE1005 and refactor collection initialization and delegate invocations. -->
<NoWarn>$(NoWarn);SA0001;SA1402;IDE0028;IDE1005</NoWarn>
<!-- <MetalamaFormatCompileTimeCode>True</MetalamaFormatCompileTimeCode> -->
<!-- The latest version supported by Metalama Compiler may be higher that the latest version supported by Metalama Framework. -->
<LangVersion>$(LangMaxVersion)</LangVersion>
</PropertyGroup>
</Project>