From 01835496c78c66e46c0770b5321c5f814168c58f Mon Sep 17 00:00:00 2001 From: "Victor \"Nate\" Graf" Date: Mon, 26 Mar 2018 12:10:37 -0700 Subject: [PATCH] Add /p:UseRazorBuildServer=false to prevent background processes (#17152) --- tests/src/sizeondisk/sodbench/SoDBench.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/src/sizeondisk/sodbench/SoDBench.cs b/tests/src/sizeondisk/sodbench/SoDBench.cs index cd8c819..fe40a4d 100644 --- a/tests/src/sizeondisk/sodbench/SoDBench.cs +++ b/tests/src/sizeondisk/sodbench/SoDBench.cs @@ -371,7 +371,7 @@ namespace SoDBench { FileName = s_dotnetExe.FullName, // The UserSharedCompiler flag is set to false to prevent handles from being held that will later cause deletion of the installed SDK to fail. - Arguments = $"publish -c Release --runtime {os} --output {publishDir.FullName} /p:UseSharedCompilation=false", + Arguments = $"publish -c Release --runtime {os} --output {publishDir.FullName} /p:UseSharedCompilation=false /p:UseRazorBuildServer=false", UseShellExecute = false, WorkingDirectory = deploymentSandbox.FullName }; -- 2.7.4