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#?
feedback
|
|
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
has been broken up into some pieces
| ||||
|
feedback
|
| |||
|
feedback
|
|
Surely you can use msbuild to build any Visual Studio solution file. I believe you can use | |||
|
feedback
|
|
You can create a .proj file:
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.
| |||
|
feedback
|
|
See this link for an example using the .NET 4.0 MSBuild API: http://www.odewit.net/ArticleContent.aspx?id=MsBuildApi4&format=html
A simpler example:
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:
| ||||
|
feedback
|