2 Star 37 Fork 18

Zoe/DotNetCoreStudyDemo

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Program.cs 691 Bytes
一键复制 编辑 原始数据 按行查看 历史
Zoe 提交于 2022-04-16 16:27 +08:00 . AddEventDemo
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace OrderDemo
{
public class Program
{
public static void Main(string[] args)
{
CreateHostBuilder(args).Build().Run();
}
public static IHostBuilder CreateHostBuilder(string[] args) =>
Host.CreateDefaultBuilder(args)
.ConfigureWebHostDefaults(webBuilder =>
{
webBuilder.UseStartup<Startup>();
});
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/CodeZoe/dot-net-core-study-demo.git
git@gitee.com:CodeZoe/dot-net-core-study-demo.git
CodeZoe
dot-net-core-study-demo
DotNetCoreStudyDemo
main

搜索帮助