Cannot watch contents of variables when debuggin ASP.NET 5 IIS Express
问题 When I debug an ASP.NET 5 web application it hits my breakpoints, but I cannot watch the contents of variables created locally. Example code from startup.cs using empty project as template: public void Configure(IApplicationBuilder app) { app.UseIISPlatformHandler(); var dummy = DateTime.Now; app.Run(async (context) => { await context.Response.WriteAsync("Hello World! " + dummy); }); } When I put a breakpoint on "app.Run(...." it hits the breakpoint but I cannot see the content of variable