Add tests and change to call exec

This commit is contained in:
Bryan Thornbury 2016-03-17 18:02:48 -07:00
parent 863f1cd91d
commit 2afe032280
2 changed files with 30 additions and 1 deletions

View file

@ -158,7 +158,7 @@ namespace Microsoft.DotNet.Tools.Run
// The executable is a ".dll", we need to call it through dotnet.exe
var muxer = new Muxer();
command = Command.Create(muxer.MuxerPath, Enumerable.Concat(new[] { outputName }, _args));
command = Command.Create(muxer.MuxerPath, Enumerable.Concat(new[] { "exec", outputName }, _args));
}
else
{