0

I just upgraded from VS2013 to VS2017 express edition and I am trying to create a MVC application. I choose web site ASP.NET (Razor v3).

I cannot find in the project structure where is the file RouteConfig neither the global asax file. When I deploy the test site, everything is working correctly. Did I miss something ? or is there any changes regarding VS2017 ?

project structure

Ancient
  • 3,007
  • 14
  • 55
  • 104

1 Answers1

1

First of all you are talking about a website not a webapp which can be seen in you attachment.

An ASP.NET site can run without the global.asax file. Here is a question which talks about alternatives of global.asax file.

For Route.config you can add a file and add routes in it

Ancient
  • 3,007
  • 14
  • 55
  • 104