From 0e06cbd4bdc37da0e693f4e3fed016bc209887c1 Mon Sep 17 00:00:00 2001 From: Daniel Palme Date: Tue, 19 Mar 2024 20:21:26 +0100 Subject: [PATCH] Release 5.2.4 --- src/.gitignore | 1 + src/ReportGenerator.Core.Test/MsBuildTest.cs | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/src/.gitignore b/src/.gitignore index 8ed1f6a7..98c5c9dc 100644 --- a/src/.gitignore +++ b/src/.gitignore @@ -16,5 +16,6 @@ bin obj .DS_Store .AssemblyAttributes +.netconfig node_modules /_ReSharper.Caches \ No newline at end of file diff --git a/src/ReportGenerator.Core.Test/MsBuildTest.cs b/src/ReportGenerator.Core.Test/MsBuildTest.cs index 0caeafd6..185632ee 100644 --- a/src/ReportGenerator.Core.Test/MsBuildTest.cs +++ b/src/ReportGenerator.Core.Test/MsBuildTest.cs @@ -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(); @@ -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();