summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2013-03-26 23:08:11 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2013-03-26 23:08:11 -0700
commit46024305aea96582f750755a9fb9fb065f7e29d7 (patch)
tree0c9f9d5cdf95233b25d0c6232bbfee415f261d39
parent331097f1d732a3bae8732df773e66e0c67e96807 (diff)
downloadDotNetOpenAuth-46024305aea96582f750755a9fb9fb065f7e29d7.zip
DotNetOpenAuth-46024305aea96582f750755a9fb9fb065f7e29d7.tar.gz
DotNetOpenAuth-46024305aea96582f750755a9fb9fb065f7e29d7.tar.bz2
Fixes MRefBuilder build break.
-rw-r--r--tools/Documentation.targets7
1 files changed, 6 insertions, 1 deletions
diff --git a/tools/Documentation.targets b/tools/Documentation.targets
index d40c17e..2a3dd0a 100644
--- a/tools/Documentation.targets
+++ b/tools/Documentation.targets
@@ -12,9 +12,14 @@
<Import Project="$(ProjectRoot)Tools\sandcastle.targets" />
+ <ItemGroup>
+ <MRefDependencyProjects Include="$(ProjectRoot)src\DotNetOpenAuth.Core\DotNetOpenAuth.Core.csproj" />
+ <MRefDependencyProjects Include="$(ProjectRoot)src\DotNetOpenAuth.OAuth2.Client\DotNetOpenAuth.OAuth2.Client.csproj" />
+ </ItemGroup>
+
<Target Name="CollectMRefDependencies">
<MSBuild
- Projects="$(ProjectRoot)src\DotNetOpenAuth.Core\DotNetOpenAuth.Core.csproj"
+ Projects="@(MRefDependencyProjects)"
Targets="ResolveAssemblyReferences"
BuildInParallel="$(BuildInParallel)">
<Output TaskParameter="TargetOutputs" ItemName="MRefDependencies" />