CentOS 安裝 dotnetcore

參考官方教程:https://www.microsoft.com/net/core#linuxcentoslinux

 

  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();
            }
        }
    }
相關文章
相關標籤/搜索