MSBuild Sample Code Demonstrating How to Convert Older Projects to VS8 Format
/*
Use of included script samples are subject to the terms specified at https://www.microsoft.com/info/cpyright.htm
Written by Jomo Fisher
*/
using System;
using System.Text;
using Microsoft.Build.Conversion;
class ConvertProject
{
static void Main(string[] args)
{
ProjectFileConverter c = new ProjectFileConverter();
c.OldProjectFile = args[0];
c.NewProjectFile = args[1];
c.Convert();
}
}