Created
August 22, 2016 07:37
-
-
Save oridonner/a1679822a8c02a13a09f3cf572689598 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
| <Target Name="WhereAmI"> | |
| <Message Text=" Here I Am " /> | |
| <Exec Command="dir ." /> | |
| <Message Text=" " /> | |
| </Target> | |
| <Target Name="ShowReservedProperties"> | |
| <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)" /> | |
| <Message Text=" MSBuildStartupDirectory = $(MSBuildStartupDirectory)" /> | |
| </Target> | |
| <Target Name="ShowOtherProperties"> | |
| <Message Text=" " /> | |
| <Message Text=" " /> | |
| <Message Text=" Environment (SET) Variables* " /> | |
| <Message Text=" --------------------------- " /> | |
| <Message Text=" COMPUTERNAME = *$(COMPUTERNAME)* " /> | |
| <Message Text=" USERDNSDOMAIN = *$(USERDNSDOMAIN)* " /> | |
| <Message Text=" USERDOMAIN = *$(USERDOMAIN)* " /> | |
| <Message Text=" USERNAME = *$(USERNAME)* " /> | |
| </Target> | |
| </Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment