I know that we are able to publish .Net Core 3.x console applications as a self-contained
, singlefile
. But is it possible to publish web application as a single file?
I tried to use
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<PublishSingleFile>true</PublishSingleFile>
But after publishing I've got the error ANCM Application DLL Not Found
. My application is on .Net Core 3.1.1
.
How can I do that?