Skip to content

Instantly share code, notes, and snippets.

@JayBazuzi
Created November 17, 2013 20:41
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 JayBazuzi/7518019 to your computer and use it in GitHub Desktop.
Save JayBazuzi/7518019 to your computer and use it in GitHub Desktop.
Simple MSBuild project to execute a simple custom MSBuild task.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="MyTask" AssemblyFile=".\bin\Debug\ClassLibrary2.dll" />
<Target Name="Build">
<MyTask Foo = "hi" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment