summaryrefslogtreecommitdiffstats
path: root/tools/Documentation.targets
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-11-16 15:52:59 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-11-16 15:52:59 -0800
commitdf01707b59fea996765348c95831ed74313004e7 (patch)
tree18a3d07a2b7991f4f8eb511fb9c762fac05e185f /tools/Documentation.targets
parent1fecc0fdcb729a54c7b0fd011b9a93509aee4d73 (diff)
parentf988329c3eadde7a897a3449bd3f22a447269b70 (diff)
downloadDotNetOpenAuth-df01707b59fea996765348c95831ed74313004e7.zip
DotNetOpenAuth-df01707b59fea996765348c95831ed74313004e7.tar.gz
DotNetOpenAuth-df01707b59fea996765348c95831ed74313004e7.tar.bz2
Standardized as much as possible on msbuild properties that represent directory paths ending with a trailing slash.
Merge branch 'targetsWork'
Diffstat (limited to 'tools/Documentation.targets')
-rw-r--r--tools/Documentation.targets12
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/Documentation.targets b/tools/Documentation.targets
index cd73784..e677c49 100644
--- a/tools/Documentation.targets
+++ b/tools/Documentation.targets
@@ -2,14 +2,14 @@
<PropertyGroup>
<NetfxVer>2.0</NetfxVer>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <ProjectRoot Condition="'$(ProjectRoot)' == ''">$(MSBuildProjectDirectory)\..\..</ProjectRoot>
+ <ProjectRoot Condition="'$(ProjectRoot)' == ''">$(MSBuildProjectDirectory)\..\..\</ProjectRoot>
<OutputAssembly>DotNetOpenAuth</OutputAssembly>
- <OutputPath>$(ProjectRoot)\bin\$(Configuration)</OutputPath>
- <DocOutputPath>$(ProjectRoot)\doc</DocOutputPath>
- <IntermediatePath>$(ProjectRoot)\obj\$(Configuration)</IntermediatePath>
- <DocumentationFile>$(OutputPath)\$(OutputAssembly).xml</DocumentationFile>
+ <OutputPath>$(ProjectRoot)bin\$(Configuration)\</OutputPath>
+ <DocOutputPath>$(ProjectRoot)doc\</DocOutputPath>
+ <IntermediatePath>$(ProjectRoot)obj\$(Configuration)\</IntermediatePath>
+ <DocumentationFile>$(OutputPath)$(OutputAssembly).xml</DocumentationFile>
</PropertyGroup>
- <Import Project="$(ProjectRoot)\Tools\sandcastle.targets" />
+ <Import Project="$(ProjectRoot)Tools\sandcastle.targets" />
</Project>