This repository was archived by the owner on Dec 14, 2018. It is now read-only.

Description
I'm not sure if this should be posted in this repo or with the tooling, but here goes.
When deploying using RC2 it seems the views aren't being included. If I run the executable from the command line post-publish and then launch localhost:5000 in a browser I get a blank screen and a 500 server error in the browser and a bunch of error messages relating to missing views on the command line, for example:
fail: Microsoft.AspNetCore.Server.Kestrel, Version=1.0.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60[13]
Connection id "0HKSF70AEDSCP": An unhandled exception was thrown by the application.
System.InvalidOperationException: The view 'Index' was not found. The following locations were searched:
/Areas/Website/Views/Home/Index.cshtml
/Areas/Website/Views/Shared/Index.cshtml
/Views/Shared/Index.cshtml
at Microsoft.AspNetCore.Mvc.ViewEngines.ViewEngineResult.EnsureSuccessful(IEnumerable``1 originalLocations)
at Microsoft.AspNetCore.Mvc.ViewResult.<ExecuteResultAsync>d__26.MoveNext()
If I manually copy over the views from the development folder and restart the executable then everything kicks in perfectly.
The exact same occurs whether I deploy to a local folder or to a remote server running IIS with WebDeploy. The project was created in VS2015 with Tooling Preview 1 installed.