Set 'NoRestartServerOnBuild' by default. This means we can re-enable IISExpress when we think people are all on VS15.7Pre3 or later
This commit is contained in:
parent
2b5f61c8b1
commit
2f4e60b134
|
|
@ -7,6 +7,9 @@
|
|||
<!-- By default, enable auto rebuilds for debug builds. Note that the server will not enable it in production environments regardless. -->
|
||||
<BlazorRebuildOnFileChange Condition="'$(Configuration)' == 'Debug'">true</BlazorRebuildOnFileChange>
|
||||
|
||||
<!-- When using IISExpress with a standalone app, there's no point restarting IISExpress after build. It slows things unnecessarily and breaks in-flight HTTP requests. -->
|
||||
<NoRestartServerOnBuild>true</NoRestartServerOnBuild>
|
||||
|
||||
<!-- We can remove this after updating to newer Razor tooling, where it's enabled by default -->
|
||||
<UseRazorBuildServer>true</UseRazorBuildServer>
|
||||
</PropertyGroup>
|
||||
|
|
|
|||
Loading…
Reference in New Issue