Y
Hacker News
new
|
ask
|
show
|
jobs
by
tester756
805 days ago
App with runtime would probably be around 30 MBs?
dotnet publish -c Release -r linux-x64 -o output -p:PublishTrimmed=true
or 100MB without trimming
1 comments
neonsunset
805 days ago
AOT-built /Example should be <= 2MB (like most of them regardless of the library), since the library itself can only be consumed by .NET and its assembly would take a couple dozens of KB at most.
link