.Net Core Debug 与 Release 打包

2022-03-22  本文已影响0人  Rinaloving
#if DEBUG
                   .UseUrls(AppConfigurtaion.GetSecondSection("Api", "api").ToString())//给程序启动设置url地址
                   .UseKestrel()//使用Kestrel内部服务器
                   .UseStartup<Startup>();
#elif RELEASE
                    .UseStartup<Startup>().UseKestrel();
#endif

上一篇 下一篇

猜你喜欢

热点阅读