Net Core Winform打包单体应用

1 最普通的发布

dotnet publish -r win-x64 -c Release -o ./bin/output
Net Core Winform打包单体应用

2 打包,包含框架

dotnet publish -r win-x64 -c Release -o ./bin/single /p:PublishSingleFile=true
Net Core Winform打包单体应用

3 打包,削减无用的文件(不适合winform之类的程序)

dotnet publish -r win-x64 -c Release -o ./bin/single /p:PublishSingleFile=true /p:PublishTrimmed=true
Net Core Winform打包单体应用

参考文章 https://baijiahao.baidu.com/s?id=1671694782936042392&wfr=spider&for=pc

上一篇:在WinSCP(FTP工具)中使用 ctrl+U 可监测指定文件夹内文件的变化(新增、修改),并实时上传(适合在本地实时更新web内容)


下一篇:树莓派配置ftp和文件共享