I suggest a different method (it helped me, maybe it will help someone too). The method is as follows (assuming you have Xcode3.0 installed):
1) rename .pbproj to .xcode
2) using muCommander ( http://www.mucommander.com/index.php#download ) go to the .xcode folder. Inside the folder you will find 3 files. * .mode1, * .pdxuser, * .pbxproj (where * is some username).
3) now replace the username * .mode1 and * .pbxuser specified by your
(e.g. johndow.mode1 - myusername.mode1)
4) after that, replace .mode1 with .mode1v3 (for example, myusername.mode1 with myusername.mode1v3)
5) select myusername.pbxproj and press the [F3] button (located in the lower left corner of the mnCommander screen) and find these lines (the topmost lines):
archiveVersion = 1;
classes = {
};
objectVersion = 39;
objects = {
Replace 39 with 44 (the number depends on the version of Xcode, you can recognize them by creating a new project and finding the same * .pbxproj lines in it). Close and save the edited document.
It's all! Now try opening the project using Xcode.
Some additional steps. Must be accepted after you open and close the project using Xcode (after completing the previous section).
6) scroll down in the same document and find the following lines:
CFBundleShortVersionString
0.5.0
CFBundleSignature
????
CFBundleVersion
0.5.0
Replace 0.5.0 with 1.0.23 or any other number starting with 1.0.0. The number matches your product version.
7) now find the following lines:
OSBundleLibraries
com.apple.iokit.IOPCIFamily
1.4
com.apple.iokit.IOStorageFamily
1.3
com.apple.kernel.iokit
1.1
Replace each number with the version number installed on your system. You can find out the version by typing "kextfind-bundle-id com.apple.iokit.IOPCIFamily" (where com.apple ... * is the key you are looking for) in the terminal and press enter.
You will get something like this:
/System/Library/Extensions/IOPCIFamily.kext
Now copy the line that you get in the muCommander locations panel. Select the .plist version and press the [F3] button. Find the number in:
CFBundleVersion
2.6
This number is what you were looking for.
8) find the line "MODULE_VERSION = 0,5;" (must be multiple instances). Replace 0.5 with 1.0, where 0.5 is the first two digits of 0.5.0 (1.0.23)
9) find the line "compatibleVersion =" Xcode 2.5 ";" and replace "2.5" with "3.0" (this is the version of Xcode)
The end.
Das_human
source share