VC++ Configuration Manager bug

N

Nikolay Kojuharov

I posted this a few months ago in a different form, and I am not sure anyone
responded.

If you name your solution configuration with a one letter name (like D or R)
it is not saved in the solution file in the following section (i.e. on save
the lines describing the configurations disappear):

GlobalSection(SolutionConfiguration) = preSolution
EndGlobalSection

If I use a longer name, like Debug or even DD it works:

GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
Release = Release
EndGlobalSection

This prevents other tools like Incredibuild from working correctly.

Nikolay
 
D

David Lowndes

Nikolay Kojuharov said:
I posted this a few months ago in a different form, and I am not sure anyone
responded.

If you name your solution configuration with a one letter name (like D or R)
it is not saved in the solution file in the following section (i.e. on save
the lines describing the configurations disappear):

GlobalSection(SolutionConfiguration) = preSolution
EndGlobalSection

If I use a longer name, like Debug or even DD it works:

GlobalSection(SolutionConfiguration) = preSolution
Debug = Debug
Release = Release
EndGlobalSection

This prevents other tools like Incredibuild from working correctly.

Nikolay
 
D

David Lowndes

Nikolay,

I'll try to pass this on to MS. You may also want to contact the tool
vendors to see what they have to say about the problem.

Dave
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top