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
Fix manifest source generation for enableUpcomingFeature/enableExperimentalFeature.
Manifest source generation was previously transforming:
.enableUpcomingFeature("FeatureName")
to:
.upcomingFeatures(["FeatureName"])
because of how the build setting was stored internally.
This commit fixes the issue by switching the internal model for these build settings to match the external model so they can be properly regenerated.
This also matches how other build settings (like `linkedFramework`) are modeled internally.
This addresses <rdar://problem/104718971>.
0 commit comments