Work around build test.sln race condition until fixed (#5490)

* Remove GenerateRuntimeConfigurationFiles from this library

* Disable parallel build of test.sln

* PR feedback
This commit is contained in:
Piotr Puszkiewicz 2017-01-27 17:13:04 -08:00 committed by GitHub
parent c9a227d164
commit ba69c88c79
9 changed files with 58 additions and 45 deletions

View file

@ -3,7 +3,7 @@
namespace Microsoft.DotNet.Cli.Build
{
public class DotNetMSBuild : DotNetTool
public class DotNetMSBuild : DotNetMSBuildTool
{
protected override string Command
{
@ -12,7 +12,7 @@ namespace Microsoft.DotNet.Cli.Build
protected override string Args
{
get { return $"{GetArguments()}"; }
get { return $"{base.Args} {GetArguments()}"; }
}
public string Arguments { get; set; }