Skip to content

Commit 6ecb683

Browse files
committed
Add diagnostic verbosity to all msbuild commands. Test output is going to be long.
1 parent 987bb59 commit 6ecb683

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build/RunTestsOnHelix.cmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ mkdir %TestExecutionDirectory%
2323
REM https://stackoverflow.com/a/7487697/294804
2424
robocopy %HELIX_CORRELATION_PAYLOAD%\t\TestExecutionDirectoryFiles %TestExecutionDirectory% /s /nfl /ndl /njh /njs /np
2525

26-
set Verbosity=diagnostic
2726
set DOTNET_SDK_TEST_EXECUTION_DIRECTORY=%TestExecutionDirectory%
2827
set DOTNET_SDK_TEST_MSBUILDSDKRESOLVER_FOLDER=%HELIX_CORRELATION_PAYLOAD%\r
2928
set DOTNET_SDK_TEST_ASSETS_DIRECTORY=%TestExecutionDirectory%\TestAssets

test/Microsoft.NET.TestFramework/Commands/MSBuildCommand.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ public override CommandResult Execute(IEnumerable<string> args)
133133
args = new[] { "/restore" }.Concat(args);
134134
}
135135

136+
args = args.Concat(new[] { "-v:diag" });
137+
136138
return base.Execute(args);
137139
}
138140

0 commit comments

Comments
 (0)