We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2441b7a commit 487b468Copy full SHA for 487b468
eng/helix/content/RunTests/TestRunner.cs
@@ -95,6 +95,8 @@ public async Task<bool> InstallAspNetAppIfNeededAsync()
95
if (Directory.Exists("Microsoft.AspNetCore.App"))
96
{
97
var appRuntimePath = $"{Options.DotnetRoot}/shared/Microsoft.AspNetCore.App/{Options.RuntimeVersion}";
98
+ Console.WriteLine($"Creating directory: {appRuntimePath}");
99
+ Directory.CreateDirectory(appRuntimePath);
100
Console.WriteLine($"Found Microsoft.AspNetCore.App/, copying to {appRuntimePath}");
101
Console.WriteLine($"Set ASPNET_RUNTIME_PATH: {appRuntimePath}");
102
EnvironmentVariables.Add("ASPNET_RUNTIME_PATH", appRuntimePath);
0 commit comments