-
Notifications
You must be signed in to change notification settings - Fork 78
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
30 lines (24 loc) · 1 KB
/
Directory.Build.props
File metadata and controls
30 lines (24 loc) · 1 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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
<PropertyGroup Label="Warning Suppressions">
<!--
Suppress a warning about upcoming deprecation of PackageLicenseUrl. When embedding licenses are supported,
replace PackageLicenseUrl with PackageLicenseExpression.
-->
<NoWarn>$(NoWarn);NU5125</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(CopyrightNetFoundation)' != ''">
<Copyright>$(CopyrightNetFoundation)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<!-- Test config -->
<PropertyGroup>
<TestRunnerName>MSTest</TestRunnerName>
<UseMSTestSdk>true</UseMSTestSdk>
<UseMSTestRunner>true</UseMSTestRunner>
<EnableMSTestRunner>true</EnableMSTestRunner>
<!-- We use MSTest.Sdk so we don't need arcade to add the Microsoft.NET.Test.Sdk package -->
<ExcludeMicrosoftNetTestSdk>true</ExcludeMicrosoftNetTestSdk>
</PropertyGroup>
</Project>