You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 14, 2018. It is now read-only.
This behavior seems to be new in recent builds. By design or bug?
WTE.Main.10730
1.Lauch vs and create a vNext empty application
2.Open project.json and add
"Microsoft.AspNet.Mvc": "6.0.0-alpha3-10550",
3.Insert code in Startup.cs
public class Startup
{
public void Configure(IBuilder app)
{
app.UseServices(services =>
{
services.AddMvc();
});
app.UseMvc();
}
}
public class HomeController
{
public string Index()
{
return "Hello World" + DateTime.Now;
}
}
4.F5
ACTUAL
.json file download and open it ,it shows with " " added.
The text was updated successfully, but these errors were encountered:
This behavior seems to be new in recent builds. By design or bug?
WTE.Main.10730
1.Lauch vs and create a vNext empty application
2.Open project.json and add
"Microsoft.AspNet.Mvc": "6.0.0-alpha3-10550",
3.Insert code in Startup.cs
public class Startup
{
public void Configure(IBuilder app)
{
app.UseServices(services =>
{
services.AddMvc();
});
app.UseMvc();
}
}
public class HomeController
{
public string Index()
{
return "Hello World" + DateTime.Now;
}
}
4.F5
ACTUAL
.json file download and open it ,it shows with " " added.

The text was updated successfully, but these errors were encountered: