• .NET Core命令


    命令:

    查看版本

    dotnet --version
    

    查看已安装的SDK信息

    #### dotnet --list-sdks
    

    查看已安装的运行时信息

    #### dotnet --list-runtimes
    

    查看帮助命令

    dotnet -h
    

    创建项目(dotnet new)

    dotnet new -i .                             --查看已安装的项目模板
    dotnet new console -o ./myConsole            --通过指定模板创建项目,创建一个控制台项目
    dotnet new -i identityserver4.templates      --安装项目模板
    

    编译项目,生成二进制文件

    dotnet build
    

    发布项目(dotnet publish)

    dotnet publish -o /output -c Release
    

    清理

    dotnet clean
    

    运行项目,相当于F5(dotnet run)

    dotnet run -c Release  --Release版本
    dotnet watch run      --当代码改变时,自动编译运行,开发时使用
    

    下载依赖包(dotnet restore)

    使用NuGet还原在项目文件中定义的依赖关系和项目特定的工具

    dotnet restore    
    

    运行已编译项目

    nohup dotnet xxx.dll &		(ps:必须使用exit退出终端,否则后台进程会退出)
    

    将core项目部署到Linux:

    发布项目:dotnet publish -o /output -c Release
    运行项目:dotnet xxx.dll //编译好的项目直接运行即可
    后台运行项目:nohup dotnet xxx.dll & (ps:必须使用exit退出终端,否则后台进程会退出)

    使用supervisor运行项目:(推荐)

    yum install supervisor
    systemctl start supervisord.service
    touch /etc/supervisord.d/xxx.ini --添加一个项目的配置文件
    systemctl restart supervisord.service

    xxx.init中添加如下内容:

    [program:coreweb1]
    directory=/application/publish/CoreWeb
    command=/usr/bin/dotnet /application/publish/CoreWeb/CoreWeb.dll
    autostart=true
    autorestart=true
    stdout_logfile=/application/publish/logs/out.log
    stderr_logfile=/application/publish/logs/err.log
    
  • 相关阅读:
    【软件测试】3.深入了解软件测试基础day3
    【软件测试】3.深入了解软件测试基础day2
    【软件测试】3.深入了解软件测试基础day1
    【软件测试】3.Linux介绍、命令
    【软件测试】1.软件测试前置基础知识
    玩转数据结构:第8章 优先队列和堆
    一、VIP课程:互联网工程专题 05-快速掌握Jenkins原理与核心功能
    Sublime 一些常用快捷键
    前端01 HTML5
    ios 故事版
  • 原文地址:https://www.cnblogs.com/fanfan-90/p/14018145.html
Copyright © 2020-2023  润新知