vote up -2 vote down star

Can VS 2008 code be opened in any other tool?

flag

29% accept rate
What kind of VS2008 code? What kind of tool? Notepad works fine for text files; XMLspy or other XML tool works well for the XML-based files. – John Saunders Jun 9 at 11:19
Why do you ask? – thijs Jun 9 at 11:24
1  
I think Jaison means "can VS 2008 projects/solutions" be opened by other coding tools? – RichardOD Jul 6 at 13:19
@RichardOD: what leads you to believe this is what he means? Did he say so in a comment somewhere? – John Saunders Jul 6 at 13:23
@John, RichardOD's comment seems likely to me. – Nathan Koop Jul 6 at 13:29

5 Answers

vote up 0 vote down

The Zeus editor can import and build Visual Studio solution files.

link|flag
vote up 3 vote down

Sharp Develop

http://www.icsharpcode.net/OpenSource/SD/

link|flag
vote up 1 vote down

The .NET Framework version 3.5 delivers MSBuild, which can compile Visual Studio 2008 project and solution files directly. See the Wikipedia MSBuild page for details

link|flag
vote up 2 vote down

All (most) files are just text, so you can open almost everything with Notepad(++). As long as you don't destroy the file structure you'll be fine.

link|flag
thijs: Just a heads up that the brackets around the '++' are NOT optional. :) (It is VERY annoying with Notepad stuffs up the file) – Arafangion Jun 9 at 23:56
vote up 8 vote down

any text editor you please.. if you mean solution files, then they are xml files.

Framework sdk is also provided separately, if you want to compile it you can use commandline compiler provided in the sdk

link|flag
1  
Actually the solution file is just a structured text file using an ini format. The project files (vbproj, csproj, etc) as XML – Slace Jun 9 at 11:30
thanx for the correction – Umair Ahmed Jun 9 at 11:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.