summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-10-19 20:28:46 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-10-19 20:28:46 -0700
commit53bb41c18da394ccbb41cbaf12760ea12c0f6515 (patch)
treea3613290f7803f173d4aa99a8c4df4669f84491d
parentb76e6657c504673f9360ed474e0cdeaabb816d73 (diff)
downloadDotNetOpenAuth-53bb41c18da394ccbb41cbaf12760ea12c0f6515.zip
DotNetOpenAuth-53bb41c18da394ccbb41cbaf12760ea12c0f6515.tar.gz
DotNetOpenAuth-53bb41c18da394ccbb41cbaf12760ea12c0f6515.tar.bz2
Fixes build with new DNOA.Mvc
-rw-r--r--tools/Documentation.targets1
-rw-r--r--tools/sandcastle.targets5
2 files changed, 5 insertions, 1 deletions
diff --git a/tools/Documentation.targets b/tools/Documentation.targets
index 332f204..1b35871 100644
--- a/tools/Documentation.targets
+++ b/tools/Documentation.targets
@@ -14,6 +14,7 @@
<ItemGroup>
<MRefDependencyProjects Include="$(ProjectRoot)src\DotNetOpenAuth.Core\DotNetOpenAuth.Core.csproj" />
+ <MRefDependencyProjects Include="$(ProjectRoot)src\DotNetOpenAuth.Mvc\DotNetOpenAuth.Mvc.csproj" />
<MRefDependencyProjects Include="$(ProjectRoot)src\DotNetOpenAuth.OAuth2.Client\DotNetOpenAuth.OAuth2.Client.csproj" />
</ItemGroup>
diff --git a/tools/sandcastle.targets b/tools/sandcastle.targets
index be792bc..33b7ab9 100644
--- a/tools/sandcastle.targets
+++ b/tools/sandcastle.targets
@@ -122,8 +122,11 @@
<Target Name="ReflectionBase" Inputs="$(OutputAssemblyFile)" Outputs="$(ReflectionBaseFile)"
DependsOnTargets="CollectMRefDependencies;SetEnvironmentVars;CreateIntermediatePath;ProductionTools">
+ <RemoveDuplicates Inputs="@(MRefDependencies)">
+ <Output TaskParameter="Filtered" ItemName="UniqueMRefDependencies"/>
+ </RemoveDuplicates>
<ItemGroup>
- <MRefDependenciesSwitch Include="@(MRefDependencies->'/dep:&quot;%(Identity)&quot;')" />
+ <MRefDependenciesSwitch Include="@(UniqueMRefDependencies->'/dep:&quot;%(Identity)&quot;')" />
</ItemGroup>
<PropertyGroup>
<MRefDependenciesSwitch>@(MRefDependenciesSwitch,' ')</MRefDependenciesSwitch>