dotnet core程序部署到ubuntu

  1. visual studio2022编译好的dotnet core程序,打开“程序包管理器控制台”,打包发布dotnet core,使用命令
    dotnet publish -c Release -r ubuntu.22.04-x64
  2. 打包会生成ubuntu22.04-x64文件夹,将这个文件夹传到ubuntu服务器,
  3. 切换到ubuntu服务器,进入到上传的ubuntu.22.04-64的dotnet文件夹,执行命令运行
    dotnet ycTaskSystem.dll --urls=http://*:3399 &

你可能感兴趣的:(ubuntu,linux,.net)