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 94b1bc9 commit 947de96Copy full SHA for 947de96
src/PostSharp.Engineering.BuildTools/Docker/DotNetComponent.cs
@@ -44,7 +44,9 @@ public override void WriteDockerfile( StreamWriter writer )
44
{
45
var runtime = this.DotNetComponentKind switch
46
47
- DotNetComponentKind.Runtime => "dotnet",
+ DotNetComponentKind.DotNetRuntime => "dotnet",
48
+ DotNetComponentKind.WindowsDesktopRuntime => "windowsdesktop",
49
+ DotNetComponentKind.AspNetCoreRuntime => "aspnetcore",
50
_ => throw new InvalidOperationException()
51
};
52
src/PostSharp.Engineering.BuildTools/Docker/DotNetComponentKind.cs
@@ -5,5 +5,7 @@ namespace PostSharp.Engineering.BuildTools.Docker;
5
public enum DotNetComponentKind
6
7
Sdk,
8
- Runtime
+ DotNetRuntime,
9
+ AspNetCoreRuntime,
10
+ WindowsDesktopRuntime
11
}
0 commit comments