diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-15 21:08:25 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-11-15 21:08:25 -0800 |
commit | 6d4b70d97eda346632dbfceeb42706bdcb7b5a04 (patch) | |
tree | 52a485a19aaeb644e25742474d5e23503b292122 | |
parent | 14b8410959a661233a24f336fdc48a2b78ea1f01 (diff) | |
download | DotNetOpenAuth-6d4b70d97eda346632dbfceeb42706bdcb7b5a04.zip DotNetOpenAuth-6d4b70d97eda346632dbfceeb42706bdcb7b5a04.tar.gz DotNetOpenAuth-6d4b70d97eda346632dbfceeb42706bdcb7b5a04.tar.bz2 |
Fixed $(DxRoot)
-rw-r--r-- | tools/sandcastle.targets | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/tools/sandcastle.targets b/tools/sandcastle.targets index b246675..fc758a0 100644 --- a/tools/sandcastle.targets +++ b/tools/sandcastle.targets @@ -5,10 +5,10 @@ <!-- Environment --> <ProjectRoot Condition="'$(ProjectRoot)' == ''">$(MSBuildProjectDirectory)\..\..\</ProjectRoot> <Framework>$(WINDIR)\Microsoft.NET\Framework\v2.0.50727</Framework> - <DxRoot>$(ProjectRoot)tools\Sandcastle</DxRoot> - <ProductionTools>$(DxRoot)\ProductionTools\</ProductionTools> - <ProductionTransforms>$(DxRoot)\ProductionTransforms\</ProductionTransforms> - <Presentation>$(DxRoot)\Presentation\$(PresentationStyle)\</Presentation> + <DxRoot>$(ProjectRoot)tools\Sandcastle\</DxRoot> + <ProductionTools>$(DxRoot)ProductionTools\</ProductionTools> + <ProductionTransforms>$(DxRoot)ProductionTransforms\</ProductionTransforms> + <Presentation>$(DxRoot)Presentation\$(PresentationStyle)\</Presentation> <HHC>$(PROGRAMFILES)\Html Help Workshop\hhc.exe</HHC> <OutputAssemblyFile>$(OutputPath)$(OutputAssembly).dll</OutputAssemblyFile> @@ -148,13 +148,13 @@ Inputs="$(DocOutputPath)html\*.htm;$(TocFile)" Outputs="$(HxsFile)"> <Copy SourceFiles="@(HxsFiles)" DestinationFiles="@(HxsFiles->'$(OutputPath)%(RecursiveDir)%(FileName)%(Extension)')"/> - <Exec Command='"$(DxRoot)\Presentation\shared\copyhavana.bat" $(OutputAssembly)' /> + <Exec Command='"$(DxRoot)Presentation\shared\copyhavana.bat" $(OutputAssembly)' /> <Exec Command='"$(ProductionTools)XslTransform.exe" /xsl:"$(ProductionTransforms)CreateHxc.xsl" "$(TocFile)" /arg:fileNamePrefix="$(OutputAssembly)" /out:"$(HxcFile)"' /> <Exec Command='"$(ProductionTools)XslTransform.exe" /xsl:"$(ProductionTransforms)TocToHxSContents.xsl" "$(TocFile)" /out:"$(HxtFile)"' /> <Exec Command='hxcomp.exe -p "$(HxcFile)"' IgnoreExitCode="true" /> </Target> <Target Name="ProductionTools"> - <MSBuild Projects="$(DxRoot)\Source\build.proj" /> + <MSBuild Projects="$(DxRoot)Source\build.proj" /> </Target> </Project> |