CentOS 安装 dotnetcore
2021-06-16 20:03
标签:div www new net mic code [] build star 参考官方教程:https://www.microsoft.com/net/core#linuxcentos CentOS 安装 dotnetcore 标签:div www new net mic code [] build star 原文地址:http://www.cnblogs.com/weiyuxinghuacun/p/7269568.html
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
dotnet new console -o hwapp
cd hwapp
dotnet restore
dotnet run
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
上一篇:jQuery判断当前浏览器类型
下一篇:web的工作原理
文章标题:CentOS 安装 dotnetcore
文章链接:http://soscw.com/index.php/essay/94716.html