Las vistas no se copian al publicar el proyecto en netcore 2.0 visual studio 2017

He creado un proyecto ASP.NET Core 2.0 en VS 2017. Cuando publico mi proyecto, elViews carpeta no están allí, pero elwwwroot carpeta es

Esto lo puedo configurar en mi archivo .csproj con lo siguiente:

<ItemGroup>                                                                            
   <Content Update="appsettings.json;web.config" CopyToOutputDirectory="PreserveNewest"/>
   <Content Update="Views\**\*" CopyToOutputDirectory="PreserveNewest" />
   <Content Update="wwwroot\**\*" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

Pero no funcionó.

Respuestas a la pregunta(2)

Su respuesta a la pregunta