Skip to content

Commit

Permalink
SDK: Use ArgumentsList instead of Arguments when running MSBuild process
Browse files Browse the repository at this point in the history
  • Loading branch information
seclerp committed Apr 21, 2024
1 parent 3ae514f commit f9745f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Cesium.Sdk.Tests/SdkTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected async Task<BuildResult> ExecuteTargets(string projectName, params stri
{
WorkingDirectory = testProjectFolder,
FileName = "dotnet",
Arguments = $"msbuild \"{testProjectFile}\" /t:{joinedTargets} /restore /bl:{binLogFile}",
ArgumentList = { "msbuild", testProjectFile, $"/t:{joinedTargets}", "/restore", $"/bl:{binLogFile}" },
RedirectStandardOutput = true,
RedirectStandardError = true,
CreateNoWindow = true,
Expand Down

0 comments on commit f9745f6

Please sign in to comment.