Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to do a command line project upgrade and compile from Visual C# 2005 to Visual C# 2008 Express?

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

devenv SolutionFile | ProjectFile /upgrade

But is there a similar way using Express?

like image 882
mellerbeck Avatar asked Jul 01 '10 14:07

mellerbeck


1 Answers

The format of the project files are the same.

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

So write a simple commandline app to do that conversion for you, and then proceed as normal with 2008.

like image 74
leppie Avatar answered Oct 03 '22 04:10

leppie