我最近刚刚升级Visual Studio 2015
了ASP.NET 5 beta8
,这导致了从旧听众到这个新的 ' Kestrel
' .. 的奇怪转变。
我试图按照说明让它运行,但我只是产生了一个控制台窗口,上面写着......
托管环境:开发
申请开始。按 Ctrl+C 关闭。
好的,所以我导航到http://localhost:5000
,然后......那里什么都没有。我的应用程序没有运行或任何东西。
我也尝试ASP.NET MVC
使用 Kestrel 启动默认示例项目,并使用内置设置,并获得相同的结果。我真的不确定该怎么做。
这是我到目前为止所做的......
我的档案里有它;project.json
"dependencies": {
"Microsoft.AspNet.Server.Kestrel": "1.0.0-beta8",
},
"commands": {
"web": "Microsoft.AspNet.Server.Kestrel"
},
使用旧的监听器,我的程序运行良好beta7
;但是现在即使安装了beta8
. 我正处于对这种被迫改变感到沮丧的令人毛骨悚然的阶段。我也无法让它运行IIS
。
根据要求,这是我的Startup.cs
文件;
public Startup(IHostingEnvironment env, IApplicationEnvironment appEnv) {
// Setup configuration sources.
Configuration = new ConfigurationBuilder()
.SetBasePath(appEnv.ApplicationBasePath)
.AddJsonFile("config.json")
.AddEnvironmentVariables()
.Build();
}
public IConfiguration Configuration { get; set; }
// For more information on how to configure your application, visit http://go.microsoft.com/fwlink/?LinkID=398940
public void ConfigureServices(IServiceCollection services) {
// Add MVC services to the services container.
services.AddMvc();
services.UseCookieAuthentication(o => {
//o.ExpireTimeSpan
o.CookieName = "3b7eaa9c-decd-4c5d-83f9-01f1f11a6e22";
});
}
public void Configure(IApplicationBuilder app) {
app.UseIdentity();
app.UseStaticFiles();
app.UseMvc(routes => {
// add the new route here.
routes.MapRoute(name: "areaRoute",
template: "{area:exists}/{controller}/{action}");
routes.MapRoute(
name: "default",
template: "{controller=Home}/{action=Index}/{id?}"
);
});
}