Created
November 21, 2011 09:49
-
-
Save codito/1382177 to your computer and use it in GitHub Desktop.
Debugging msbuild properties with Message task
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
<Project ToolsVersion="4.0" InitialTargets="Log" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<!-- other properties go here.... --> | |
<Target Name="Log"> | |
<Message Text="SearchPath = $(AssemblySearchPaths)"/> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment