Skip to content

Commit

Permalink
Release 5.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpalme committed Mar 19, 2024
1 parent 924356b commit 0e06cbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/.gitignore
Expand Up @@ -16,5 +16,6 @@ bin
obj
.DS_Store
.AssemblyAttributes
.netconfig
node_modules
/_ReSharper.Caches
4 changes: 2 additions & 2 deletions src/ReportGenerator.Core.Test/MsBuildTest.cs
Expand Up @@ -43,7 +43,7 @@ public void ExecuteMSBuildScript_NetFull()
};

var process = Process.Start(processStartInfo);
Assert.True(process.WaitForExit(5000));
Assert.True(process.WaitForExit(10000));

string result = process.StandardOutput.ReadToEnd();
string errors = process.StandardError.ReadToEnd();
Expand Down Expand Up @@ -79,7 +79,7 @@ public void ExecuteMSBuildScript_NetCore()
};

var process = Process.Start(processStartInfo);
Assert.True(process.WaitForExit(5000));
Assert.True(process.WaitForExit(10000));

string result = process.StandardOutput.ReadToEnd();
string errors = process.StandardError.ReadToEnd();
Expand Down

0 comments on commit 0e06cbd

Please sign in to comment.