Created
May 25, 2012 16:53
-
-
Save pckujawa/2789170 to your computer and use it in GitHub Desktop.
msbuild target for printing reserved properties
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 DefaultTargets="PrintReservedProperties" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Target Name="PrintReservedProperties"> | |
<Message Text="MSBuildProjectDirectory $(MSBuildProjectDirectory)" /> | |
<Message Text="MSBuildProjectFile $(MSBuildProjectFile)" /> | |
<Message Text="MSBuildProjectExtension $(MSBuildProjectExtension)" /> | |
<Message Text="MSBuildProjectFullPath $(MSBuildProjectFullPath)" /> | |
<Message Text="MSBuildProjectName $(MSBuildProjectName)" /> | |
<Message Text="MSBuildBinPath $(MSBuildBinPath)" /> | |
<Message Text="MSBuildProjectDefaultTargets $(MSBuildProjectDefaultTargets)" /> | |
<Message Text="MSBuildExtensionsPath $(MSBuildExtensionsPath)" /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment