Asif Hameed
Asif Hameed

Reputation: 1423

views folder is missing in asp.net core 2.0 after publish

I am working on asp.net core 2.0 web application and I am publishing code to local folder using visual studio 2017 but I see views folder is not published. I see a dll named WebApplication1.PrecompiledViews.dll. Where are views folder gone. How can I get views folders?

Please suggest.

Upvotes: 1

Views: 1827

Answers (1)

Chris Pratt
Chris Pratt

Reputation: 239400

Views are always compiled in ASP.NET Core. You never get a Views folder when you publish an ASP.NET Core app.

Upvotes: 2

Related Questions