forked from dotnet/msbuild
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use readable format for multi-level properties (dotnet#7166)
Follow-ups from Permit individually settable search paths dotnet#7008 (review) Respect opt-outs from dotnet#7008 sdk#22719 (comment) Context For multi-level properties, follow the naming pattern similar to BaseProperty_SubOption with an _ underscore character acting as a separator to make these properties clearer. We already follow this pattern in Common props where we have DisableLogTaskParameter_ConvertToAbsolutePath_Pathand friends. msbuild/src/Tasks/Microsoft.Common.props Lines 181 to 183 in 14313d1 <DisableLogTaskParameter_ConvertToAbsolutePath_Path>true</DisableLogTaskParameter_ConvertToAbsolutePath_Path> <DisableLogTaskParameter_FindUnderPath_OutOfPath>true</DisableLogTaskParameter_FindUnderPath_OutOfPath> <DisableLogTaskParameter_RemoveDuplicates_Inputs>true</DisableLogTaskParameter_RemoveDuplicates_Inputs> Changes Made So, Use AssemblySearchPath_Use{Variant} property format to control individual inclusion of different variants of assembly search paths. By default, these properties will be opt-out to maintain back-compat. Notes This change hasn't been shipped yet. So, it's technically not breaking and it's also not too late to change it.
- Loading branch information
Showing
3 changed files
with
30 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters