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 /Build.proj
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 'Build.proj')
-rw-r--r--Build.proj2
1 files changed, 1 insertions, 1 deletions
diff --git a/Build.proj b/Build.proj
index 6dcc3b95420..44da6d66f99 100644
--- a/Build.proj
+++ b/Build.proj
@@ -18,7 +18,7 @@
<!-- Upfront restore hooks -->
<Import Project="$(RepositoryEngineeringDir)restore\docs.targets" Condition="'$(DotNetBuildFromSource)' != 'true'" />
- <Import Project="$(RepositoryEngineeringDir)restore\optimizationData.targets" Condition="'$(DotNetBuildFromSource)' != 'true' and '$(EnableNgenOptimization)' == 'true'" />
+ <Import Project="$(RepositoryEngineeringDir)restore\optimizationData.targets" Condition="'$(DotNetBuildFromSource)' != 'true'" />
<Target Name="BuildLocalTasks"
BeforeTargets="Build">