···71, buildType ? "Release"
72 # If set to true, builds the application as a self-contained - removing the runtime dependency on dotnet
73, selfContainedBuild ? false
0074 # The dotnet SDK to use.
75, dotnet-sdk ? dotnetCorePackages.sdk_6_0
76 # The dotnet runtime to use.
···146147 # gappsWrapperArgs gets included when wrapping for dotnet, as to avoid double wrapping
148 dontWrapGApps = args.dontWrapGApps or true;
00149150 passthru = {
151 inherit nuget-source;
···71, buildType ? "Release"
72 # If set to true, builds the application as a self-contained - removing the runtime dependency on dotnet
73, selfContainedBuild ? false
74+ # Whether to explicitly enable UseAppHost when building
75+, useAppHost ? true
76 # The dotnet SDK to use.
77, dotnet-sdk ? dotnetCorePackages.sdk_6_0
78 # The dotnet runtime to use.
···148149 # gappsWrapperArgs gets included when wrapping for dotnet, as to avoid double wrapping
150 dontWrapGApps = args.dontWrapGApps or true;
151+152+ inherit selfContainedBuild useAppHost;
153154 passthru = {
155 inherit nuget-source;