Suppress unused code warning in the shared test project (#18249)

This commit is contained in:
Chris Ross 2020-01-10 09:56:37 -08:00 committed by msftbot[bot]
parent 1272d04ea4
commit 17094a33c1
1 changed files with 2 additions and 1 deletions

View File

@ -1,9 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(DefaultNetCoreTargetFramework)</TargetFrameworks>
<DebugType>portable</DebugType>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<NoWarn>CS0649</NoWarn><!-- Not all APIs are called in the shared test project -->
</PropertyGroup>
<ItemGroup>