CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 7 of 7
  1. #1
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    VS9->VS8 project converter ?

    I just tried opening a VS9 solution ( .sln file) using VS8 and I got a message saying it couldn't be opened because of being created by a newer version. However from a casual inspection, the two formats don't seem to be massively different from each other. Does anyone know if there's a utility available for converting VS9 projects & solutions to VS8 format?
    "A problem well stated is a problem half solved.” - Charles F. Kettering

  2. #2
    Join Date
    Oct 2002
    Location
    Timisoara, Romania
    Posts
    14,360

    Re: VS9->VS8 project converter ?

    No, not really. But you only have to delete manually a couple of entries from the project file and it will work. Like this one
    Code:
    TargetFrameworkVersion="196613"
    Marius Bancila
    Home Page
    My CodeGuru articles

    I do not offer technical support via PM or e-mail. Please use vbBulletin codes.

  3. #3
    Join Date
    Nov 2001
    Posts
    251

    Wink Re: VS9->VS8 project converter ?

    Quote Originally Posted by John E View Post
    I just tried opening a VS9 solution ( .sln file) using VS8 and I got a message saying it couldn't be opened because of being created by a newer version. However from a casual inspection, the two formats don't seem to be massively different from each other. Does anyone know if there's a utility available for converting VS9 projects & solutions to VS8 format?
    Yes, it's called MS Notepad! Open up the .vcproj file and change:
    Version="9.00"
    to
    Version="8.00"

    It should open up like a charm.

  4. #4
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    Re: VS9->VS8 project converter ?

    Thanks guys. Those suggestions seem to have worked.
    Last edited by John E; June 12th, 2010 at 01:38 AM.
    "A problem well stated is a problem half solved.” - Charles F. Kettering

  5. #5
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: VS9->VS8 project converter ?

    I have a converter available for $100 US if you are interested.

  6. #6
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    Re: VS9->VS8 project converter ?

    Sadly, your offer came too late Arjay However....

    ....if you had an app that could convert a makefile into a VS solution, that would be well worth $100 (and I imagine you'd sell copies in the thousands !!)
    "A problem well stated is a problem half solved.” - Charles F. Kettering

  7. #7
    Arjay's Avatar
    Arjay is offline Moderator / EX MS MVP Power Poster
    Join Date
    Aug 2004
    Posts
    13,490

    Re: VS9->VS8 project converter ?

    Quote Originally Posted by John E View Post
    Sadly, your offer came too late Arjay However....

    ....if you had an app that could convert a makefile into a VS solution, that would be well worth $100 (and I imagine you'd sell copies in the thousands !!)
    Yeah, makefile converers are indeed scarce. It seems that anyone that takes the time to convert them are just happy to get the job done and no one ever seems to turn the knowledge into a tool.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured