zoukankan      html  css  js  c++  java
  • CentOS 安装 dotnetcore

    参考官方教程:https://www.microsoft.com/net/core#linuxcentos

    1. 安装.NET CORE SDK 
      sudo yum install libunwind libicu
      curl -sSL -o dotnet.tar.gz https://go.microsoft.com/fwlink/?linkid=848821
      sudo mkdir -p /opt/dotnet && sudo tar zxf dotnet.tar.gz -C /opt/dotnet
      sudo ln -s /opt/dotnet/dotnet /usr/local/bin
    2. 根据模板创建代码
      dotnet new console -o hwapp
      cd hwapp
    3. 运行代码
      dotnet restore
      dotnet run
      值得注意的是要修改program.cs的代码
      using System;
      using System.Collections.Generic;
      using System.IO;
      using System.Linq;
      using System.Threading.Tasks;
      using Microsoft.AspNetCore.Hosting;
      
      namespace mvcapp
      {
          public class Program
          {
              public static void Main(string[] args)
              {
                  var host = new WebHostBuilder()
                      .UseUrls("http://10.86.146.154:5000/") //默认为localhost,要修改成服务器的IP,或者对应的域名
                      .UseKestrel()
                      .UseContentRoot(Directory.GetCurrentDirectory())
                      .UseIISIntegration()
                      .UseStartup<Startup>()
                      .Build();
      
                  host.Run();
              }
          }
      }
  • 相关阅读:
    快速模幂
    UPC-2249 曲线分割【递推】
    maven 服务器
    maven repo
    php-fpm sock
    mysql
    go 1
    xdebug
    centos
    win10 2503 2502
  • 原文地址:https://www.cnblogs.com/weiyuxinghuacun/p/7269568.html
Copyright © 2011-2022 走看看