Update cshtml wildcard in publishOptions

Updating the publishOptions wildcard that used to publish everything in
the views folder to now publish all .cshtml files. The problem was that
the old wildcard only included the Views folder and didn't include
anything in the Areas/*/Views folders (used by views inside areas).

This change makes things much simpler, all .csthml files are published.
This commit is contained in:
Ryan Nowak 2016-07-27 11:06:56 -07:00 committed by Sridhar Periyasamy
parent 5d8aedebf3
commit 9646db0cc8

View file

@ -94,7 +94,7 @@
"publishOptions": {
"include": [
"wwwroot",
"Views",
"**/*.cshtml",
"appsettings.json",
"web.config"
]