summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2012-04-13 17:53:24 -0700
committerAndrew Arnott <andrewarnott@gmail.com>2012-04-13 17:53:24 -0700
commit781d923bd24115f727739dbb9ba0c8e022bb453d (patch)
tree5497a1dd22cc9952b41b16b6a7c6485da672b8fc
parent5e0d170fc25a6b02fbb2e9f3c1245ceff4aa2821 (diff)
downloadDotNetOpenAuth-781d923bd24115f727739dbb9ba0c8e022bb453d.zip
DotNetOpenAuth-781d923bd24115f727739dbb9ba0c8e022bb453d.tar.gz
DotNetOpenAuth-781d923bd24115f727739dbb9ba0c8e022bb453d.tar.bz2
Adds missing .xml files to project templates.
Toward fix for #106
-rw-r--r--projecttemplates/projecttemplates.proj2
-rw-r--r--tools/DotNetOpenAuth.targets1
2 files changed, 2 insertions, 1 deletions
diff --git a/projecttemplates/projecttemplates.proj b/projecttemplates/projecttemplates.proj
index 553eb7f..07b810f 100644
--- a/projecttemplates/projecttemplates.proj
+++ b/projecttemplates/projecttemplates.proj
@@ -55,7 +55,7 @@
<!-- Add external libraries and their symbols -->
<ProjectTemplateLibraries Include="@(SignedProductAssemblies)" />
<ProjectTemplateLibraries Include="@(SignedProductAssemblies->'%(SymbolPath)')" />
- <ProjectTemplateLibraries Include="$(OutputPath)$(ProductName).xml" />
+ <ProjectTemplateLibraries Include="@(SignedProductAssemblies->'%(XmlDocumentationFile)')" />
<!-- ... and log4net -->
<ProjectTemplateLibraries Include="$(ProjectRoot)lib\log4net.dll" />
<ProjectTemplateLibraries Include="$(ProjectRoot)lib\log4net.xml" />
diff --git a/tools/DotNetOpenAuth.targets b/tools/DotNetOpenAuth.targets
index 445c072..81ef2b1 100644
--- a/tools/DotNetOpenAuth.targets
+++ b/tools/DotNetOpenAuth.targets
@@ -97,6 +97,7 @@
<SignedAssemblyTargets Include="@(AssembliesToSign->'%(RootDir)%(Directory)$(SignedSubPath)%(FileName)%(Extension)')">
<UnsignedAssemblyPath>%(AssembliesToSign.Identity)</UnsignedAssemblyPath>
<SymbolPath Condition="Exists('%(RootDir)%(Directory)%(FileName).pdb')">%(RootDir)%(Directory)%(FileName).pdb</SymbolPath>
+ <XmlDocumentationFile Condition="Exists('%(RootDir)%(Directory)%(FileName).xml')">%(RootDir)%(Directory)%(FileName).xml</XmlDocumentationFile>
</SignedAssemblyTargets>
</ItemGroup>