Skip to content

Instantly share code, notes, and snippets.

@mhutch
Created August 23, 2016 02:08
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 mhutch/b5043f541d9976f1e413f58ecfbb3613 to your computer and use it in GitHub Desktop.
Save mhutch/b5043f541d9976f1e413f58ecfbb3613 to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<GenFile>Out.txt</GenFile>
</PropertyGroup>
<Target Name ="SkipMe" Inputs="$(MSBuildThisFile)" Outputs="$(GenFile)">
<WriteLinesToFile File="$(GenFile)" Lines="Hello" />
<ItemGroup>
<ItemFromTarget Include="Included!" />
</ItemGroup>
</Target>
<Target Name="Build" DependsOnTargets="SkipMe">
<Message Text="@(ItemFromTarget)" Importance="High" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment