Avoid confusion with client apps not rebuilding after changing Blazor library code

This commit is contained in:
Steve Sanderson 2018-02-15 16:45:30 +00:00
parent af0085f550
commit b529f2b913
1 changed files with 7 additions and 0 deletions

View File

@ -17,4 +17,11 @@
given that the packed version of this project wouldn't add a .dll reference) -->
<MSBuild Projects="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.Blazor.Build.csproj" />
</Target>
<PropertyGroup>
<!-- When referencing from source, we need to disable VS's fast up-to-date check,
because otherwise changing the underlying Blazor library code isn't enough
to make it rebuild the affected library apps. -->
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
</PropertyGroup>
</Project>