Skip to content

Instantly share code, notes, and snippets.

@prabirshrestha
Created November 15, 2011 16:21
Show Gist options
  • Save prabirshrestha/1367483 to your computer and use it in GitHub Desktop.
Save prabirshrestha/1367483 to your computer and use it in GitHub Desktop.
<Target Name="Build" DependsOnTargets="CreateOutputDir">
38
- <MSBuild Projects="$(ProjectRoot)\SignalR.sln" Targets="Build" Properties="Version=$(Version);PackageOutputDir=$(ArtifactsDir);Configuration=$(Configuration)" />
38
+ <MSBuild Projects="$(ProjectRoot)\SignalR.sln"
39
+ Targets="Build"
40
+ Properties="Version=$(Version);PackageOutputDir=$(ArtifactsDir);Configuration=$(Configuration)" />
41
+
42
+ <MSBuild Projects="$(ProjectRoot)\SignalR.WP7.sln"
43
+ Targets="Build"
44
+ Condition="Exists('$(MSBuildExtensionsPath)\Microsoft\Silverlight for Phone\')"
45
+ Properties="Version=$(Version);PackageOutputDir=$(ArtifactsDir);Configuration=$(Configuration)" />
39
46
</Target>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment