diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-16 15:52:59 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-16 15:52:59 -0800 |
commit | df01707b59fea996765348c95831ed74313004e7 (patch) | |
tree | 18a3d07a2b7991f4f8eb511fb9c762fac05e185f /tools/Documentation.targets | |
parent | 1fecc0fdcb729a54c7b0fd011b9a93509aee4d73 (diff) | |
parent | f988329c3eadde7a897a3449bd3f22a447269b70 (diff) | |
download | DotNetOpenAuth-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.targets | 12 |
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> |