How do I build a C# solution programatically? I should be able to pass the path of a solution and get the output messages ( or just build the solution ) how do i achieve this in C#?

link|improve this question

75% accept rate
Your question is quite vague. Can you give us a pseudo code blurb on what you are trying to accomplish? – Nix Jun 28 '11 at 18:34
@Nix: I think the OP means "compile code at runtime"? – minitech Jun 28 '11 at 18:35
Why do you need this? What are you trying to achieve? You can build solutions from the command-line using MSBuild if you don't want to build them through Visual Studio. – Bernard Jun 28 '11 at 18:36
Are you wanting to command Visual Studio (2010 presumably) to create a new solution at a specified path? – Robert Beaubien Jun 28 '11 at 18:36
i need this because we are building a single solution for our projects when it now gets everything form svn and also builds it next would be deploying all in one click :) – Kathy Jun 28 '11 at 18:39
show 3 more comments
feedback

5 Answers

up vote 7 down vote accepted

Most of you all are providing ways to do it by calling external commands, but there is an api, Microsoft.Build.Framework, to build via C#

This blog that has a very basic example Automated compilation of Visual Studio Projects through C# using MSBuild


Note the code in that blog works, but is a little dated the

Microsoft.Build.BuildEngine

has been broken up into some pieces

Microsoft.Build.Construction

Microsoft.Build.Evaluation

Microsoft.Build.Execution

link|improve this answer
thank you Nix :) – Kathy Jun 28 '11 at 19:24
feedback
// Fix to the path of your msbuild
var pathToMsBuild = "C:\\Windows\\DotNet\\Framework\\msbuild.exe";

Process.Start(pathToMsBuild + " " + pathToSolution);
link|improve this answer
thank you Justin i will test this too :) – Kathy Jun 28 '11 at 19:24
feedback

Surely you can use msbuild to build any Visual Studio solution file.

I believe you can use Process.Start to invoke msbuild with appropriate parameters.

link|improve this answer
feedback

You can create a .proj file:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <ItemGroup>
    <!-- Common -->
    <Solution Include="Common\Util\Util.sln"/>
    <Solution Include="Common\EventScheduler\EventSchedulerSolution\EventSchedulerSolution.sln"/>
    <!-- Server -->
    <Solution Include="Server\DataLayer\DataTransferObjects\SharedModel\SharedModel.sln"/>
    <Solution Include="Server\DataLayer\DataTier\ESPDAL.sln"/>
    <!-- Internal Tools -->
    <Solution Include="InternalTools\ServerSchemaUtility\ServerSchemaUtility.sln"/>
  </ItemGroup>
  <Target Name="Rebuild">
    <MSBuild Projects="@(Solution)" Targets="Rebuild" Properties="Configuration=Release"/>
  </Target>
</Project>

and then call msbuild.exe using the proj file as an argument, below is a batch file example. From C#, you could call Process.Start as indicated by other posters.

"C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild.exe" BuildSolutions.proj

pause
link|improve this answer
feedback

See this link for an example using the .NET 4.0 MSBuild API:

http://www.odewit.net/ArticleContent.aspx?id=MsBuildApi4&format=html

List<ILogger> loggers = new List<ILogger>();
loggers.Add(new ConsoleLogger());
var projectCollection = new ProjectCollection();
projectCollection.RegisterLoggers(loggers);
var project = projectCollection.LoadProject(buildFileUri); // Needs a reference to System.Xml
try
{
    project.Build();
}
finally
{
    projectCollection.UnregisterAllLoggers();
}

A simpler example:

var project = new Project(buildFileUri, null, "4.0");
var ok = project.Build(); // or project.Build(targets, loggers)
return ok;

Remember to use the .NET 4 Profile (not the Client profile).

Add the following references: System.XML, Microsoft.Build, Microsoft.Build.Framework and optionally Microsoft.Build.Utilities.v4.0.

Also look here:

running msbuild programmatically

To build a solution, do the following:

var props = new Dictionary<string, string>();
props["Configuration"] = "Release";
var request = new BuildRequestData(buildFileUri, props, null, new string[] { "Build" }, null);
var parms = new BuildParameters();
// parms.Loggers = ...;

var result = BuildManager.DefaultBuildManager.Build(parms, request);
return result.OverallResult == BuildResultCode.Success;
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.