Publishing a self-contained console application in .net core, as described here results in a directory with a lot of files, even one with "smaller footprint".
Is it possible to bundle all the dependencies so we get a single executable? One large-ish myapp.exe when targeting Windows, for example.
I suppose I'm looking for something similar to ILMerge, but for .net core. Is it possible by some option flag on dotnet publish or some other command? If not, please consider as a feature request. Thanks.
Publishing a self-contained console application in .net core, as described here results in a directory with a lot of files, even one with "smaller footprint".
Is it possible to bundle all the dependencies so we get a single executable? One large-ish
myapp.exewhen targeting Windows, for example.I suppose I'm looking for something similar to ILMerge, but for .net core. Is it possible by some option flag on
dotnet publishor some other command? If not, please consider as a feature request. Thanks.