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