-
Notifications
You must be signed in to change notification settings - Fork 822
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP [cC]onfig => [cC]onfiguration #60
Conversation
case platform(Platform) | ||
case product(PBXProductType) | ||
case productPlatform(PBXProductType,Platform) | ||
case base | ||
|
||
var path: String { | ||
switch self { | ||
case let .config(config): return "Configs/\(config.rawValue)" | ||
case let .configuration(configuration): return "Configurations/\(configuration.rawValue)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would break unless the presets config
folder was renamed
@@ -87,7 +87,7 @@ | |||
- Added `carthageBuildPath` option [PR#34](https://github.com/yonaskolb/XcodeGen/pull/34) | |||
|
|||
### Fixed | |||
- Fixed installations of XcodeGen not applying build setting presets for configs, products, and platforms, due to missing resources |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
references in the changelog shouldn't really be changed
Oh wow, you literally renamed every single instance of config in the project :) At the moment in terms of user facing properties in the spec we have following:
These should be the only things that change (as well as the documentation for them). In addition, I'm actually still on the fence about this change. Does anyone else here have any opinions? |
IMO
|
I'm not planning to work on this one for now. (I got used to the code-base and I feel good.👌) |
Related: #59