Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Wrighton <davidwr@microsoft.com>2021-04-14 03:35:31 +0300
committerGitHub <noreply@github.com>2021-04-14 03:35:31 +0300
commitfccdca068be7ac1fd44cdd62ef1aec3e6c752e77 (patch)
treea598d1dd80fc22db879fd342b62f74b9c4e5551a /Directory.Build.props
parent9ca2a70d6eb941d5482ea0205654beab6267a471 (diff)
Simplify mibc usage in the build (#50536)
- Produce a merged mibc with all scenarios squished together - Properly attach the mibc data to the incremental build for System.Private.CoreLib - This can't be done for the framework here. It will require mibc integration in the SDK - Enable pgo optimization in checked builds - Enable pgo optimization in framework compile for outerloop runs
Diffstat (limited to 'Directory.Build.props')
-rw-r--r--Directory.Build.props2
1 files changed, 1 insertions, 1 deletions
diff --git a/Directory.Build.props b/Directory.Build.props
index 4ee7e1db360..3917b5b3f7b 100644
--- a/Directory.Build.props
+++ b/Directory.Build.props
@@ -200,7 +200,7 @@
<!--Feature switches -->
<PropertyGroup>
- <EnableNgenOptimization Condition="'$(EnableNgenOptimization)' == '' and '$(Configuration)' == 'Release'">true</EnableNgenOptimization>
+ <EnableNgenOptimization Condition="'$(EnableNgenOptimization)' == '' and ('$(Configuration)' == 'Release' or '$(Configuration)' == 'Checked')">true</EnableNgenOptimization>
<!-- Enable NuGet static graph evaluation to optimize incremental restore -->
<RestoreUseStaticGraphEvaluation>true</RestoreUseStaticGraphEvaluation>
<!-- Turn off end of life target framework checks as we intentionally build older .NETCoreApp configurations. -->