Miscellaneous DebrisAvner Kashtan's Frustrations and ExultationsUpgrading all projects to .NET 3.5- May 25, 2008 A simple macro to change the Target Framework for a project from .NET 2.0 to .NET 3.5, hacked together in a few minutes. This will fail for C++CLI projects, and possibly VB.NET projects (haven't checked). Works fine for regular C projects, as well as web projects: &160; For Each proj As Project In DTE.Solution.Projects Try proj.Properties.Item("TargetFramework").Value = 196613 Debug.Print("Upgraded 0 to 3.5", proj.Name) Catch ex As Exception ...http://weblogs.asp.net/avnerk/archive/2008/05/25/upgrading-all-projects-to-net-3-5.aspx |