Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goyalmohit/5c1181e71e26f4d2c4232026873f6e6b to your computer and use it in GitHub Desktop.
Save goyalmohit/5c1181e71e26f4d2c4232026873f6e6b to your computer and use it in GitHub Desktop.
Understanding MSBuild Properties - Project File Samples 10
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<OutputDir>C:\Temp</OutputDir>
</PropertyGroup>
<Target Name = "Compile">
<Message Text="OutputDir = $(OutputDir)"/>
<Message Text="Configuration = $(Configuration)"/>
</Target>
<PropertyGroup>
<Configuration>Release</Configuration>
</PropertyGroup>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment