Reputation: 625
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
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