Created
November 17, 2013 23:28
-
-
Save JayBazuzi/7519763 to your computer and use it in GitHub Desktop.
Create an MSBuild project and run it, within a unit test, using some convenient extension methods.
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
var projectRootElement = ProjectRootElement.Create(); | |
projectRootElement | |
.AddTarget("Build") | |
.AddTask<MyTask>() | |
.SetParameter("Foo", "hi"); | |
var highImportanceStringLogger = new HighImportanceStringLogger(); | |
var success = new ProjectInstance(projectRootElement).Build(new[] { highImportanceStringLogger }); | |
Assert.IsTrue(success); | |
const string expected = @"Inputs: | |
Foo = hi | |
"; | |
Assert.AreEqual(expected, highImportanceStringLogger.ToString()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment