summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-24 09:32:11 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-24 09:32:11 -0800
commita81c49ba56ef944eb69678e1e011744e7f8e8397 (patch)
treef22faf06dd0aa5fd697fcd29b6d90667e67e28e0
parent266ba24e03c2dd23ef4cafede0a76909456d3ee4 (diff)
downloadDotNetOpenAuth-a81c49ba56ef944eb69678e1e011744e7f8e8397.zip
DotNetOpenAuth-a81c49ba56ef944eb69678e1e011744e7f8e8397.tar.gz
DotNetOpenAuth-a81c49ba56ef944eb69678e1e011744e7f8e8397.tar.bz2
Fixed build bugs introduced by aca1e03547 and 4a2da38656.
-rw-r--r--build.proj10
1 files changed, 6 insertions, 4 deletions
diff --git a/build.proj b/build.proj
index 7f3ff14..fba274f 100644
--- a/build.proj
+++ b/build.proj
@@ -99,7 +99,8 @@
<Target Name="ToolsLayout" DependsOnTargets="GetBuildVersion;_SetDropProperties;BuildUnifiedProduct">
<PropertyGroup>
- <ToolsDirectory>$(DropsRoot)$(ProductName)-Tools-$(BuildVersion)\</ToolsDirectory>
+ <ToolsDirectoryNoSlash>$(DropsRoot)$(ProductName)-Tools-$(BuildVersion)</ToolsDirectoryNoSlash>
+ <ToolsDirectory>$(ToolsDirectoryNoSlash)\</ToolsDirectory>
</PropertyGroup>
<ItemGroup>
@@ -129,7 +130,7 @@
<Target Name="Tools" DependsOnTargets="ToolsLayout">
<PropertyGroup>
- <ToolsZip>$(ToolsDirectory).zip</ToolsZip>
+ <ToolsZip>$(ToolsDirectoryNoSlash).zip</ToolsZip>
</PropertyGroup>
<Delete Files="$(ToolsZip)" />
@@ -303,7 +304,8 @@
where CallTarget is fired do NOT affect those called targets. -->
<!-- The rest of these are here so that other DependsOn targets have access to these properties. -->
<PropertyGroup>
- <DropDirectory>$(DropsRoot)$(ProductName)-$(BuildVersion)\</DropDirectory>
+ <DropDirectoryNoSlash>$(DropsRoot)$(ProductName)-$(BuildVersion)</DropDirectoryNoSlash>
+ <DropDirectory>$(DropDirectoryNoSlash)\</DropDirectory>
</PropertyGroup>
</Target>
@@ -411,7 +413,7 @@
<Target Name="Drop" DependsOnTargets="DropLayout">
<PropertyGroup>
- <DropZip>$(DropDirectory).zip</DropZip>
+ <DropZip>$(DropDirectoryNoSlash).zip</DropZip>
</PropertyGroup>
<Delete Files="$(DropZip)" />
<Zip Files="@(AllDropTargets)" ZipFileName="$(DropZip)" WorkingDirectory="$(DropsRoot)" />