If not, is bugreporter the place to make feature requests?
Yes.
Would the possibility to globally associate an extension to a file type be considered a new feature or an enhancement over the possibility to do it locally?
We generate our .xcodeproj files with a tool, so we may be able to force the file type of .INL files at this stage.
When a .INL file is included in the project, it looks like this in the .pbxproj file:
/* Begin PBXFileReference section */
...
4AFBA26302C6F9354FA83B0A /* File.inl */ = {isa = PBXFileReference; lastKnownFileType = text; name = File.inl; path = Source/File.inl; sourceTree = SOURCE_ROOT; };
...
/* End PBXFileReference section */
If I change the file type of File.inl in its Info page, the .pbxproj file turns into this:
4AFBA26302C6F9354FA83B0A /* File.inl */ = {isa = PBXFileReference; explicitFileType = sourcecode.cpp.cpp; name = File.inl; path = Source/File.inl; sourceTree = SOURCE_ROOT; };
If I manually modify the .pbxproj file like this, the project still loads and builds fine:
4AFBA26302C6F9354FA83B0A /* File.inl */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.cpp; name = File.inl; path = Source/File.inl; sourceTree = SOURCE_ROOT; };
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden