釋出 .NET 5 帶執行時單檔案應用時優化檔案體積的方法

Soar、毅發表於2021-05-15

自 .NET 釋出起,.NET Framework 執行環境就是其擺脫不掉的桎梏。後來有了 .NET Core ,微軟終於將自帶執行時和單檔案程式帶給了我們。即便如此,大部分情況下開發者仍然不太滿意:一個簡簡單單的控制檯應用程式,甚至只包含一個 Hello World ,附帶執行時的單檔案程式打包出來就需要 20M+ 。

.NET 程式的釋出受一個名為 釋出配置檔案 (.pubxml) 的 XML 檔案控制,該檔案預設不存在,會在第一次在 Visual Studio 中執行釋出時建立。該檔案會被儲存在專案的 Properties/PublishProfiles 目錄下,可以在以下微軟文件上看到更詳細的介紹: 

https://docs.microsoft.com/zh-cn/aspnet/core/host-and-deploy/visual-studio-publish-profiles?view=aspnetcore-5.0

通過閱讀文件和不斷嘗試,筆者得出了一個可以優化打包檔案的釋出配置檔案:

<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net5.0\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net5.0</TargetFramework>
<RuntimeIdentifier>linux-arm</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
<PublishTrimmed>True</PublishTrimmed>
<TrimMode>link</TrimMode>
</PropertyGroup>
</Project>

使用以上釋出配置,最終釋出檔案體積從 20M 降低到了 8.7M ,使用 WinRar 壓縮之後為 3.33 M 左右。

你也可以使用下面配置來進一步減小檔案體積:

<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration>Release</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>bin\Release\net5.0\publish\</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<TargetFramework>net5.0</TargetFramework>
<RuntimeIdentifier>linux-arm</RuntimeIdentifier>
<SelfContained>true</SelfContained>
<PublishSingleFile>True</PublishSingleFile>
<PublishTrimmed>True</PublishTrimmed>
<TrimMode>link</TrimMode>
<DebuggerSupport>false</DebuggerSupport>
<EnableUnsafeBinaryFormatterSerialization>false</EnableUnsafeBinaryFormatterSerialization>
<EnableUnsafeUTF7Encoding>false</EnableUnsafeUTF7Encoding>
<EventSourceSupport>false</EventSourceSupport>
<HttpActivityPropagationSupport>false</HttpActivityPropagationSupport>
<InvariantGlobalization>true</InvariantGlobalization>
<UseSystemResourceKeys>true</UseSystemResourceKeys>
<TrimmerRemoveSymbols>true</TrimmerRemoveSymbols>
</PropertyGroup>
</Project>

詳細的裁剪選項可以參看微軟的官方文件:

https://docs.microsoft.com/zh-cn/dotnet/core/deploying/trimming-options

相關文章