Skip to content

Commit 4fa0dbe

Browse files
authored
Merge pull request #2 from aspnet/rynowak/workaround-publishing
Attempt to work around dotnet/arcade#1425
2 parents 383d2b0 + d48ac80 commit 4fa0dbe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Razor/Microsoft.NET.Sdk.Razor/test/IntegrationTests/MSBuildProcessManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ internal static Task<ProcessResult> RunProcessCoreAsync(
5151
ProcessStartInfo processStartInfo,
5252
TimeSpan? timeout = null)
5353
{
54-
timeout = timeout ?? TimeSpan.FromSeconds(120);
54+
timeout = timeout ?? TimeSpan.FromSeconds(5 * 60);
5555

5656
var process = new Process()
5757
{

0 commit comments

Comments
 (0)