When I create an asp.net project in visual studio community 2017 no .csproj file is created

When I create an asp.net project in visual studio community 2017 only .sln file is created, no .csproj file, is it not suppose to create .csproj file also?

Upvotes: 2

Views: 395

Answers (1)

GGO
GGO

Reputation: 2748

To get a .csproj file you have to create a "Web Project" and not a "Website". Website project is use to create .ASPX files in Web pages application compiled on the fly.

Upvotes: 1

Related Questions