forked from Richasy/Bili.Uwp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUwp.UnitTests.props
More file actions
20 lines (20 loc) · 809 Bytes
/
Copy pathUwp.UnitTests.props
File metadata and controls
20 lines (20 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Uwp.props" />
<PropertyGroup>
<UnitTestPlatformVersion Condition="'$(UnitTestPlatformVersion)' == ''">$(VisualStudioVersion)</UnitTestPlatformVersion>
</PropertyGroup>
<ItemGroup>
<SDKReference Include="TestPlatform.Universal, Version=$(UnitTestPlatformVersion)" />
</ItemGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<UseDotNetNativeToolchain>false</UseDotNetNativeToolchain>
</PropertyGroup>
<PropertyGroup>
<AppxPackageSigningEnabled>false</AppxPackageSigningEnabled>
<AppxBundle>Never</AppxBundle>
</PropertyGroup>
<PropertyGroup>
<NoWarn>$(NoWarn);2008;SA1600;IDE1006;CA1822</NoWarn>
</PropertyGroup>
</Project>