Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a User Interface for editing MSBuild Projects?

Tags:

msbuild

I work in a dev environment where we heavily use MSBuild - I find myself constantly having to edit my build csproj xml by hand. I hate this - there seems like there should be a nice UI for editing these files and performing common tasks. I would of imagined that a tab in Project Properties Pages in Visual Studio would have given me something but alas. Ideally I would be able to:

  1. Do everything I can in Xml including being able to interact with any custom steps I created
  2. See what the MSBuild variables evaluated to
  3. See where the variables are defined so that I could quickly navigate to them
like image 786
will Avatar asked Sep 01 '09 20:09

will


2 Answers

MSBuild explorer

msbuild explorer

Some padding to make this 30 chars

like image 146
Chris S Avatar answered Sep 29 '22 02:09

Chris S


Since I don't have funds for this MsBuild sidekick, I use Msbuild Template in visual studio and MsBuild Profiler.

I have all my tasks split out in to multiple files and when I need to test / debug I run the single task from the command line.

like image 35
Ryu Avatar answered Sep 29 '22 02:09

Ryu