Include *.html in UpToDateCheckInput

This commit is contained in:
Steve Sanderson 2018-02-27 14:28:20 +00:00
parent 3e5381c17e
commit 2fc2a23d41
1 changed files with 3 additions and 2 deletions

View File

@ -19,8 +19,9 @@
<Generator>MSBuild:BlazorCompileRazorComponents</Generator>
</Compile>
<!-- Instruct VS to include cshtml files in its "fast up-to-date check". If we didn't, then
it will skip the build entirely if you only changed cshtml files. -->
<!-- Instruct VS to include html/cshtml files in its "fast up-to-date check". If we didn't, then
it will skip the build entirely if you only changed html/cshtml files. -->
<UpToDateCheckInput Include="$(ProjectDir)**\*.cshtml" />
<UpToDateCheckInput Include="$(ProjectDir)**\*.html" />
</ItemGroup>
</Project>