diff options
Diffstat (limited to 'tools/Documentation.targets')
-rw-r--r-- | tools/Documentation.targets | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/Documentation.targets b/tools/Documentation.targets new file mode 100644 index 0000000..2ae0d17 --- /dev/null +++ b/tools/Documentation.targets @@ -0,0 +1,15 @@ +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <PropertyGroup>
+ <NetfxVer>2.0</NetfxVer>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <ProjectRoot Condition="'$(ProjectRoot)' == ''">$(MSBuildProjectDirectory)\..\..</ProjectRoot>
+ <OutputAssembly>DotNetOpenId</OutputAssembly>
+ <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" />
+
+</Project>
|