Avoid confusion with client apps not rebuilding after changing Blazor library code
This commit is contained in:
parent
af0085f550
commit
b529f2b913
|
|
@ -17,4 +17,11 @@
|
||||||
given that the packed version of this project wouldn't add a .dll reference) -->
|
given that the packed version of this project wouldn't add a .dll reference) -->
|
||||||
<MSBuild Projects="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.Blazor.Build.csproj" />
|
<MSBuild Projects="$(MSBuildThisFileDirectory)Microsoft.AspNetCore.Blazor.Build.csproj" />
|
||||||
</Target>
|
</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>
|
</Project>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue