Hi All:
I started with an empty asp.net 5 project. I have built bootstrap and jQuery into wwwroot. My index.cshtml renders, but the but does not find (404) my css and javascript files. I have published the solution and find the wwwroot empty.
Any ideas?
Phil
<!DOCTYPE html><html><head><meta charset="utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><title>@ViewBag.Title – Demo</title><link href="~/css/site.min.css" rel="stylesheet" type="text/css" /></head><body><h1>NSG Demo</h1><h3>@ViewBag.Message</h3><h4>@TempData["tdMessage"]</h4><h4>@ViewData["vdMessage"]</h4><!-- javascript --><environment names="Development"><script src="/scripts/scripts.js" type="text/javascript"></script></environment><environment names="Staging,Production"><script src="/scripts/script.min.js" type="text/javascript"></script></environment></body></html>