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 db56715 commit da1b20eCopy full SHA for da1b20e
eng/helix/content/RunTests/Program.cs
@@ -97,6 +97,7 @@ static async Task Main(string[] args)
97
Console.WriteLine($"Set ASPNET_RUNTIME_PATH: {aspnetRuntimePath}");
98
environmentVariables.Add("ASPNET_RUNTIME_PATH", aspnetRuntimePath);
99
Console.WriteLine($"Found Microsoft.AspNetCore.App/, copying to {aspnetRuntimePath}");
100
+ Directory.CreateDirectory(aspnetRuntimePath);
101
foreach (var file in Directory.EnumerateFiles("Microsoft.AspNetCore.App", "*.*", SearchOption.AllDirectories))
102
{
103
File.Copy(file, aspnetRuntimePath, overwrite: true);
0 commit comments