• .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
    
  • 相关阅读:
    ionic2 开始第一个App(二)
    简单的文件下载方法
    php获取汉字首字母
    LumiSoft.Net邮件接收乱码问题解决
    输入框字符限制插件·
    微软相关产品集合的网站,感觉找软件很方便 也很全 收藏了
    利用发射 下拉列表绑定枚举
    ASP.NET中UpdatePanel内控件的JS失效的问题
    Json格式转string
    SQL 判断是否存在时间交叉
  • 原文地址:https://www.cnblogs.com/fanfan-90/p/14018145.html
Copyright © 2020-2023  润新知