-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
31 lines (29 loc) · 1.41 KB
/
Directory.Build.props
File metadata and controls
31 lines (29 loc) · 1.41 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
<Project>
<PropertyGroup>
<AssemblyName>Drift.$(MSBuildProjectName)</AssemblyName>
<RootNamespace>Drift.$(MSBuildProjectName)</RootNamespace>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<!--
Make sure any documentation comments which are included in code get checked for syntax during the build, but do
not report warnings for missing comments.
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do)
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
SA1601: A C# partial element is missing a documentation header.
SA1611: A C# method, constructor, delegate or indexer element is missing documentation for one or more of its parameters.
SA1615: A C# element is missing documentation for its return value.
-->
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PublishDocumentationFile>false</PublishDocumentationFile>
<NoWarn>$(NoWarn);CS1573;CS1591;SA1601;SA1611;SA1615</NoWarn>
<!-- TODO try to enable
<AnalysisMode>All</AnalysisMode>
-->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" PrivateAssets="all" />
<PackageReference Include="SonarAnalyzer.CSharp" PrivateAssets="all" />
</ItemGroup>
</Project>