Workaround for "Explicit RID still required for .NET Framework test projects"

- Addresses #1617
This commit is contained in:
Mike Harder 2017-04-10 22:03:00 -07:00 committed by GitHub
parent d29e4d4cf0
commit 99278c4691
1 changed files with 6 additions and 0 deletions

View File

@ -7,6 +7,12 @@
<TargetFrameworks Condition=" '$(OS)' != 'Windows_NT' ">netcoreapp2.0</TargetFrameworks>
<PlatformTarget Condition="'$(TargetFramework)' == 'net46'">x64</PlatformTarget>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!--
Workaround for "Explicit RID still required for .NET Framework test projects" (https://github.com/dotnet/sdk/issues/909).
Remove when fixed.
-->
<OutputType>exe</OutputType>
</PropertyGroup>
<ItemGroup>