Is it possible to update the project on the command line and compile from Visual C # 2005 to Visual C # 2008 Express?

Using the full version of Visual C # 2008 Express, it looks like you can use

devenv SolutionFile | ProjectFile /upgrade 

But is there a similar way to use Express?

+7
c # visual-studio-2008 visual-studio-2005 visual-studio-express
source share
1 answer

The format of the project files is the same.

The solution file has 2 differences in the versions at the top. Just increase each.

So, write a simple command line application to do this conversion for you, and then continue as usual from 2008.

+1
source share

All Articles