You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added import of .user file for multi-targeted builds (#9444) (#9558)
Fixes#9131
Context
As described on the issue, muti-targeted builds did not import the .user file on the outer build. This change makes the outer build import the .user file.
Changes Made
Added import reference to .user file in Microsoft.Common.CrossTargeting.targets .
Testing
Test is in SDK repo (dotnet/sdk#37192)
Condition="'$(ImportByWildcardBeforeMicrosoftCommonCrossTargetingTargets)' == 'true' and exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.CrossTargeting.targets\ImportBefore')"/>
<ImportProject="$(CustomBeforeMicrosoftCommonCrossTargetingTargets)"Condition="'$(CustomBeforeMicrosoftCommonCrossTargetingTargets)' != '' and Exists('$(CustomBeforeMicrosoftCommonCrossTargetingTargets)')"/>
0 commit comments