CartBlanche / MonoGame-Samples

All the Samples that work with MonoGame
https://github.com/MonoGame/MonoGame
712 stars 354 forks source link

Cannot open the iOS solution in Monodevelop 2.8.6.4 #10

Closed Krumelur closed 12 years ago

Krumelur commented 12 years ago

If I try to open the iOS solution file in Monodevelop 2.8.6.4, MD gets stuck and keeps on loading forever, eating up all CPU. If I kill MD after 10 minutes and try again, the SLN file seems to be broken and MD will open it in HEX view. Does anybody else have this problem?

ghost commented 12 years ago

Hi, we've recently had a merge-explosion with the Samples repo that I'm working toward fixing even now. It seems like the problem you are experiencing is because of git merge markers left in that file from the last merge.

I'm hoping to resolve this within the next half hour. Sorry for the inconvenience.

Krumelur commented 12 years ago

Okay, I'll stop trying then. Let me know if it's fixed. I'll check back tomorrow and will go to bed now! Thanks!

CartBlanche commented 12 years ago

This is a known issue we are working to rectify. It should be fixed in the next 24 hours.

D.

On Tue, Feb 7, 2012 at 10:25 PM, Ren Ruppert < reply@reply.github.com

wrote:

If I try to open the iOS solution file in Monodevelop 2.8.6.4, MD gets stuck and keeps on loading forever, eating up all CPU. If I kill MD after 10 minutes and try again, the SLN file seems to be broken and MD will open it in HEX view. Does anybody else have this problem?


Reply to this email directly or view it on GitHub: https://github.com/CartBlanche/MonoGame-Samples/issues/10

ghost commented 12 years ago

Just wanted to update this and say that the fix is now in the pipeline. When Pull Request 284 has been merged, the issue should be resolved.

The fix is already available in CartBlanche/MonoGame-Samples:master, but you should consider using the Samples submodule in the mono/MonoGame:develop to retrieve the samples. (Once pull request 284 has cleared, that is.)

CartBlanche commented 12 years ago

Rene, can you confirm that this works for you now?

We have moved to a sub-module system, so please read here - https://github.com/mono/MonoGame/wiki/Working-with-Submodules, to see the easiest way to get things up and running.

D.

On Wed, Feb 8, 2012 at 12:08 AM, Christopher Chambers < reply@reply.github.com

wrote:

Just wanted to update this and say that the fix is now in the pipeline. When Pull Request 284 has been merged, the issue should be resolved.


Reply to this email directly or view it on GitHub:

https://github.com/CartBlanche/MonoGame-Samples/issues/10#issuecomment-3859806

Krumelur commented 12 years ago

Yes, it is working again. Thanks! Only minor: the Monogame itself is not included, so Monodevelop shows me two unknown projects.

ghost commented 12 years ago

Rene, I would say the easiest way to get MonoGame and the Samples is to clone the MonoGame repository itself, then use git submodule to get the Samples. Like so:

git clone https://github.com/mono/MonoGame.git
cd MonoGame

# Checkout the develop branch
git checkout develop

# init and update the necessary submodules
git submodule init
git submodule update ThirdParty/Libs
git submodule update Samples

Following those steps should get you a clean checkout of the MonoGame repository, along with a Samples submodule that has project references that point to the right location. We'll be adding documentation for this soon. It is a very recent change.