Skip to content

Instantly share code, notes, and snippets.

@sayedihashimi
Created January 9, 2013 06:56
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 sayedihashimi/4491191 to your computer and use it in GitHub Desktop.
Save sayedihashimi/4491191 to your computer and use it in GitHub Desktop.
You can use this gist to ensure that SlowCheetah transforms are enabled for the Azure CD build template in hosted TFS.
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="RestoreNuGetPackages">
<Message Text="Restoring nuget packages" />
<MSBuild Projects="$(MSBuildThisFileDirectory)WorkerRole1\packageRestore.proj"/>
</Target>
<Target Name="Build" DependsOnTargets="RestoreNuGetPackages">
<Message Text="Invoking solution build/publish" />
<MSBuild Projects="$(MSBuildThisFileDirectory)path\to\mysolution.sln" />
</Target>
</Project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment