1. netcore 3.*项目发布减少文件和压缩发布成单个exe
https://docs.microsoft.com/zh-cn/dotnet/core/tools/dotnet-publish
https://github.com/dotnet/sdk/issues/10505
dotnet publish -r win-x64 -c Release /p:PublishSingleFile=true /p:PublishTrimmed=true ,无法压缩非托管库
dotnet publish -r win-x64 -c Release /p:PublishTrimmed=true