You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to publish my web app as self-contained single file, the result files include 'aspnetcorev2_inprocess.dll', but I have been using kestrel as edge server for a long time, didn't used IIS any more. So I want to get rid of those IIS things totally to achieve fewer files and smaller file size(link trimming).
But the UseIIS and UseIISIntegration is called by ConfigureWebHostDefaults. ConfigureWebHostDefaults is very convenient so I want to keep it. Now, how can I get rid of IIS things totally with minimal change to my code?
No, I don't want to use /p:IncludeNativeLibrariesForSelfExtract=true.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I am trying to publish my web app as self-contained single file, the result files include 'aspnetcorev2_inprocess.dll', but I have been using kestrel as edge server for a long time, didn't used IIS any more. So I want to get rid of those IIS things totally to achieve fewer files and smaller file size(link trimming).
But the
UseIIS
andUseIISIntegration
is called byConfigureWebHostDefaults
.ConfigureWebHostDefaults
is very convenient so I want to keep it. Now, how can I get rid of IIS things totally with minimal change to my code?No, I don't want to use
/p:IncludeNativeLibrariesForSelfExtract=true
.Beta Was this translation helpful? Give feedback.
All reactions