Ooops, the .NET Standard test suite actually tested .NET Core

This commit is contained in:
Christian Köllner 2019-10-04 23:59:58 +02:00
parent e6d958c226
commit 955958405a
2 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<TargetFramework>net471</TargetFramework>
<IsPackable>false</IsPackable>
@ -22,6 +22,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" />
<PackageReference Include="MSTest.TestAdapter" Version="1.4.0" />
<PackageReference Include="MSTest.TestFramework" Version="1.4.0" />
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.10.0" />
</ItemGroup>
<ItemGroup>

View File

@ -50,6 +50,7 @@ namespace Capnp.Net.Runtime.Tests
string arguments = $"{whichTest} 127.0.0.1:{TcpPort}";
var startInfo = new ProcessStartInfo(path, arguments)
{
UseShellExecute = false,
RedirectStandardError = true,
RedirectStandardOutput = true,
RedirectStandardInput = true