(Basically we want to import targets files at some places in the *.csproj file and otherwise check that the file follows our standards)

What is the best way of doing this? I am planning to use C# and XDocument (LINQ to XML) and manipulated the nodes. But is that the best way? Other alternates may be:

  1. Find the XSD for csproj/msbuild and create stronly typed objects that represent the project file. is this possible?
  2. Are there other tools/languages that are better (It could use this as an excuse to learn Ruby). An answer would have to have some links to examples for manipulating XML.

Maybe the real question is: What is the best way to read and manipulate XML programatically?

link|improve this question

Your best option would be to use some kind of VS automation. You really should not be messing with those files directly. – Aryabhatta Feb 5 '10 at 8:20
5  
@Moron: I don't see why not. They're basically MSBuild files. IMO the whole point of them being XML (instead of them being opaque binary files) is that they're editable. – Jon Skeet Feb 5 '10 at 8:29
1  
@Jon Ideally I wouldn't say 'editable'. Readable, sure. But editing them could be problematic say, when they upgrade to a new version of VS. Unless we're talking really simple changes. – kprobst Feb 5 '10 at 8:32
Well, (I think) I have seen incompatibility between versions. You don't want your code to break when the next version comes out. Perhaps I am confusing between different file types. Anyway, if VS provides some way to manipulate them, why not use it? (Not that I am saying VS provides a way...). – Aryabhatta Feb 5 '10 at 8:33
2  
@Moron: I'd rather change the LINQ to XML code 1000 times before working with the VS API again. – codekaizen Feb 5 '10 at 8:36
show 4 more comments
feedback

4 Answers

up vote 5 down vote accepted

I would personally just use LINQ to XML directly... unless you're doing really heavy processing, I don't think it would be worth creating an object model for it. Just how many rules/whatever do you need for this tool?

link|improve this answer
This works well. I just did this for Entity Data Model's Mapping Schema Language, which doesn't expose an API, and it was very easy. – codekaizen Feb 5 '10 at 8:33
There is already an object model for this so I don't see why one would use Linq to XML instead. – Sayed Ibrahim Hashimi Oct 31 '11 at 22:28
@SayedIbrahimHashimi: When one isn't aware of the existing object model, and doesn't want to go hunting :) – Jon Skeet Oct 31 '11 at 22:59
@JonSkeet, lol in that case sure :) – Sayed Ibrahim Hashimi Nov 1 '11 at 0:02
feedback

MSBuild (which is the format of project files) has an object model that you can use for applications such as this.

link|improve this answer
I think you are on the correct path. If only you've been more specific on how to do it... Maybe msdn.microsoft.com/en-us/library/… ? – Alfred Myers Feb 5 '10 at 16:56
feedback

We have an in-house tool that manipulates project files on the fly to update references and set various properties. Since project files are not that complicated, we simply manipulate the XML directly. The tool was written long before LINQ was available, so it doesn't use it, but I see no reason why you couldn't do what Jon's suggesting.

When we upgraded from VS2005 to VS2008 we only had to do minor adjustments to the code, but of course there's no guarantees in that regard. We may have to do bigger adjustments for future versions.

If you're interested, there's a bit more info on our tool in my answer to this question http://stackoverflow.com/questions/1033809/should-a-sln-be-committed-to-source-control/1033979#1033979

link|improve this answer
We also use this system for our project files. Seems to work well and no VS dependencies, which is a plus for the build machine. – Pondidum Feb 5 '10 at 9:07
feedback

As per second part of our question how to manipulate XML programatically, here is some xml from a project configuration file. (web.config)

 <system.web>
<compilation debug="false">
<assemblies>
        <add assembly="System.Core, Version=3.5.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
        <add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" />
        <add assembly="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, 
</compilation>
</compilation>

and to parse using LINQ-TO-XML, something like follows

XDocument assemblies = XDocument.Parse("web.config");

var projectAssemblies= from a in assemblies.Descendants("system.web\assemblies")
               select new  // What ever object you waant
               {
                   Assembly = a.Attribute("assembly").Value.ToString(),
                   Version = a.Attribute("Version").Value.ToString(),
                   Culture = a.Element("Culture").Value.ToString(),
                   PublicKeyToken = a.Attribute("PublicKeyToken").Value.ToString()
               };

foreach (var v in projectAssemblies)
{
    // enjoy them 
}

hope it helps

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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