-
-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (22 loc) · 1.06 KB
/
Directory.Build.props
File metadata and controls
25 lines (22 loc) · 1.06 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
<Project>
<PropertyGroup>
<!--
CA2007: Consider calling ConfigureAwait
CA1861: Prefer 'static readonly' fields over constant array arguments
-->
<NoWarn>CA2007;CA1861</NoWarn>
</PropertyGroup>
<Import Project="$([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
<ItemGroup Label="Package References">
<PackageReference Include="coverlet.collector" PrivateAssets="All" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="JunitXml.TestLogger" Version="4.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" PrivateAssets="All" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>