mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
Update ASP.NET compilation options
Ensure batch compilation is on and that the number of recompilation before appdomain restart is greater than the default (15), because Orchard being a composable application where new modules can be installed at any time, views can be re-compiled more often than for a typical application. --HG-- branch : dev
This commit is contained in:
@@ -49,7 +49,7 @@
|
||||
affects performance, set this value to true only
|
||||
during development.
|
||||
-->
|
||||
<compilation debug="true" targetFramework="4.0">
|
||||
<compilation debug="true" targetFramework="4.0" batch="true" numRecompilesBeforeAppRestart="250">
|
||||
<buildProviders>
|
||||
<add extension=".csproj" type="Orchard.Environment.Extensions.Compilers.CSharpExtensionBuildProviderShim"/>
|
||||
</buildProviders>
|
||||
|
Reference in New Issue
Block a user