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:
parent
c9a227d164
commit
ba69c88c79
9 changed files with 58 additions and 45 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue