--命令
dotnet publish
--命令
dotnet publish --runtime osx.10.11-x64
--命令
dotnet publish ~/projects/app1/app1.csproj
--命令
dotnet publish -c release -r win-x64 -o D:\web\JY.20201209\AIO\API --self-contained false
--命令
dotnet publish D:\YF.Web\YF.Web.csproj -c release -r win-x64 -o D:\web\YF --self-contained false
--解释
dotnet publish "项目的路径" -c "发布关键字" -r "运行平台" -o "发布输出的路径" --self-contained "是否包含运行时的组件"
*
*
*
*
*