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();