Created
April 23, 2014 17:46
-
-
Save Tarmil/11225739 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r "Microsoft.Build" | |
#r "Microsoft.Build.Framework" | |
#r "Microsoft.Build.Engine" | |
open System | |
open Microsoft.Build.BuildEngine | |
open Microsoft.Build.Framework | |
let engine = new Engine() | |
engine.RegisterLogger(new ConsoleLogger()) | |
let project = new Project(engine) | |
project.Load("MyProjectFile.proj") | |
let succeeded = engine.BuildProject(project, "Main") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Target Name="Before" BeforeTargets="Main"> | |
<Message Importance="High" Text="Running Before" /> | |
</Target> | |
<Target Name="Main"> | |
<Message Importance="High" Text="Running Main" /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment