(2010) properties namespace isn't there unless i list project in front.
I had a heck of a time even figuring out how to create the settings.settings file, since xna apps don't come with it, but i figured it out. Now the problem is that i am supposed to access the settings through the Properties namespace but it's not available by normal means. I have to type the project namespace first like this:
wormipede_xna_v2.properties.default. etc...
in my solution explorer, it says i have two projects, wormipede, and wormipedecontent. I don't know if this is related, but an hour long google-fest only told me that if it didn't show up then the compiler didn't know where it was and it would be caused by more than one namespace.
Re: (2010) properties namespace isn't there unless i list project in front.
What namespace is the code that is trying to access the Settings in? It sounds like it might be in "wormipede" namespace. If this is the case, then you will need to qualify anything you're trying to access in the "wormipede_xna_v2" namespace, yes.
Re: (2010) properties namespace isn't there unless i list project in front.
nothing i found anywhere on line suggested this to be the case :(
Re: (2010) properties namespace isn't there unless i list project in front.
You could just type at the top of the file:
using wormipede_xna_v2;
Then you don't have to type the namespace all the time.
Re: (2010) properties namespace isn't there unless i list project in front.
hmmmmmmm i'll try that . Will get back to you. I was under the impression i was supposed to be using it anyway with explicitly declaring it, but perhaps not since i don't have any forms?