-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
23 lines (21 loc) · 846 Bytes
/
Directory.Build.props
File metadata and controls
23 lines (21 loc) · 846 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<!-- Any project will automatically include this file -->
<Project>
<PropertyGroup>
<SolutionDir>$(MSBuildThisFileDirectory)</SolutionDir>
<!-- Use latest C# version -->
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="3.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<PropertyGroup Condition="$(MSBuildProjectName.EndsWith('Tests'))">
<!-- No need to generate XML doc for tests -->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<!-- Ignore any "missing XML doc" warnings -->
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
</Project>