diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-24 09:32:11 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-24 09:32:11 -0800 |
commit | a81c49ba56ef944eb69678e1e011744e7f8e8397 (patch) | |
tree | f22faf06dd0aa5fd697fcd29b6d90667e67e28e0 | |
parent | 266ba24e03c2dd23ef4cafede0a76909456d3ee4 (diff) | |
download | DotNetOpenAuth-a81c49ba56ef944eb69678e1e011744e7f8e8397.zip DotNetOpenAuth-a81c49ba56ef944eb69678e1e011744e7f8e8397.tar.gz DotNetOpenAuth-a81c49ba56ef944eb69678e1e011744e7f8e8397.tar.bz2 |
Fixed build bugs introduced by aca1e03547 and 4a2da38656.
-rw-r--r-- | build.proj | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -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)" /> |