Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have many solutions containing hundreds of projects. During migration to new version of VisualStudio we have to change target framework version for all projects. But it is very ineffective to change this setting by clicking project by project Properties/Application/TargetFramework.

Can we change version of all projects in a solution at once? Is there some way to do this activity automatically/programatically?

share|improve this question

1 Answer

up vote 1 down vote accepted

csproj files are nothing but XML, editing the programmatically is easy enough.

Here's a little app I have created that utilises Linq-Xml to find and update all csproj files under a root folder:

var path = @"--Path to Root--";
var files = Directory.GetFiles(path, "*.csproj", SearchOption.AllDirectories);

XNamespace ns = "http://schemas.microsoft.com/developer/msbuild/2003";

foreach (var file in files)
{
    var doc = XDocument.Load(file);
    var element = doc.Descendants(ns + "TargetFrameworkVersion").Single();
    element.Value = "v4.5";
    doc.Save(file);
}

As you have tagged this as , you may need to perform a checkout on all the csproj files, to remove the read-only flag. Or, alternatively, just check out everything and then use tfpt uu to revert the unchanged files.

share|improve this answer
what about refernces update? Is there any tool that you are aware of? – rahulga Jan 23 at 13:25
No, I'd just follow the same approach. – DaveShaw Jan 23 at 14:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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