I have a VB.NET project in Visual Studio 2010 for an Excel Add-In.
I use the "My" namespace, and in general it seems that the "My Project" folder contains configuration information about the project.
My problem is that I need to change the name of this folder, because my version manager system won't accept spaces in file or folder names.
Is it possible? If yes, how?
Edit: There is a hacky way to do it, by renaming the folder and changing all references in the .vbproj file. However, the may work for a command line generation, but it won't work the next time the project will be opened in Visual Studio. The IDE will create a new "My Project" folder, and complain that it can't find the settings in it.
I'm looking for a way to rename it so that Visual Studio would accept it correctly.