diff options
| author | Bob Arnson <bob@firegiant.com> | 2025-03-03 22:19:36 -0500 |
|---|---|---|
| committer | Bob Arnson <github@bobs.org> | 2025-03-03 23:06:48 -0500 |
| commit | ae4c3947277a5c05368276c31bc2cd562d7580bb (patch) | |
| tree | 0e26edad956f07cf702d46030a3dec3022ba0748 /src/api | |
| parent | 29f885377442fa93f574f2b4430cb621c1ad809e (diff) | |
| download | wix-ae4c3947277a5c05368276c31bc2cd562d7580bb.tar.gz wix-ae4c3947277a5c05368276c31bc2cd562d7580bb.tar.bz2 wix-ae4c3947277a5c05368276c31bc2cd562d7580bb.zip | |
Only referenced components get default feature.v6.0.0-rc.2
Fixes https://github.com/wixtoolset/issues/issues/8882
Fixes https://github.com/wixtoolset/issues/issues/8939
Diffstat (limited to 'src/api')
| -rw-r--r-- | src/api/wix/WixToolset.Data/WixStandardLibrary.cs | 14 | ||||
| -rw-r--r-- | src/api/wix/WixToolset.Data/WixStandardLibraryIdentifiers.cs | 5 |
2 files changed, 0 insertions, 19 deletions
diff --git a/src/api/wix/WixToolset.Data/WixStandardLibrary.cs b/src/api/wix/WixToolset.Data/WixStandardLibrary.cs index dc7c5a8b..2d2a12fb 100644 --- a/src/api/wix/WixToolset.Data/WixStandardLibrary.cs +++ b/src/api/wix/WixToolset.Data/WixStandardLibrary.cs | |||
| @@ -93,20 +93,6 @@ namespace WixToolset.Data | |||
| 93 | yield return section; | 93 | yield return section; |
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | // Default feature. | ||
| 97 | { | ||
| 98 | var symbol = new FeatureSymbol(sourceLineNumber, new Identifier(AccessModifier.Virtual, WixStandardLibraryIdentifiers.DefaultFeatureName)) | ||
| 99 | { | ||
| 100 | Level = 1, | ||
| 101 | Display = 0, | ||
| 102 | InstallDefault = FeatureInstallDefault.Local, | ||
| 103 | }; | ||
| 104 | |||
| 105 | var section = CreateSectionAroundSymbol(symbol); | ||
| 106 | |||
| 107 | yield return section; | ||
| 108 | } | ||
| 109 | |||
| 110 | // Package References. | 96 | // Package References. |
| 111 | { | 97 | { |
| 112 | var section = CreateSection(WixStandardLibraryIdentifiers.WixStandardPackageReferences); | 98 | var section = CreateSection(WixStandardLibraryIdentifiers.WixStandardPackageReferences); |
diff --git a/src/api/wix/WixToolset.Data/WixStandardLibraryIdentifiers.cs b/src/api/wix/WixToolset.Data/WixStandardLibraryIdentifiers.cs index 73e4245b..a7ca11fe 100644 --- a/src/api/wix/WixToolset.Data/WixStandardLibraryIdentifiers.cs +++ b/src/api/wix/WixToolset.Data/WixStandardLibraryIdentifiers.cs | |||
| @@ -18,11 +18,6 @@ namespace WixToolset.Data | |||
| 18 | public static readonly string WixStandardModuleReferences = "WixStandardModuleReferences"; | 18 | public static readonly string WixStandardModuleReferences = "WixStandardModuleReferences"; |
| 19 | 19 | ||
| 20 | /// <summary> | 20 | /// <summary> |
| 21 | /// Default feature name. | ||
| 22 | /// </summary> | ||
| 23 | public static readonly string DefaultFeatureName = "WixDefaultFeature"; | ||
| 24 | |||
| 25 | /// <summary> | ||
| 26 | /// WiX Standard localization strings. | 21 | /// WiX Standard localization strings. |
| 27 | /// </summary> | 22 | /// </summary> |
| 28 | public static readonly string WixStandardLocalizationStrings = "WixStandardLocalizationStrings"; | 23 | public static readonly string WixStandardLocalizationStrings = "WixStandardLocalizationStrings"; |
