diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-15 22:17:20 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-12-15 22:17:20 -0800 |
commit | e12782c1a6727390b2107ff2e39d4ac6173d86fc (patch) | |
tree | 3be0ccda0a9425927263f5b6b9616ef8ba11ac08 /src/Documentation | |
parent | 078b1f350eb40ceee7423c25b1d833dd1f242da4 (diff) | |
parent | a545f7be2693596fa14540c359e43150a6a7cf88 (diff) | |
download | DotNetOpenAuth-origin/mono.zip DotNetOpenAuth-origin/mono.tar.gz DotNetOpenAuth-origin/mono.tar.bz2 |
Merge branch 'v2.5' into monoorigin/mono
Conflicts:
src/DotNetOpenId/Properties/AssemblyInfo.cs
src/DotNetOpenId/RelyingParty/AuthenticationResponse.cs
Diffstat (limited to 'src/Documentation')
-rw-r--r-- | src/Documentation/build.proj | 44 |
1 files changed, 0 insertions, 44 deletions
diff --git a/src/Documentation/build.proj b/src/Documentation/build.proj deleted file mode 100644 index 3c3c3e2..0000000 --- a/src/Documentation/build.proj +++ /dev/null @@ -1,44 +0,0 @@ -<!--
- To build the documentation, use the following command:
- msbuild example.proj
-
- By default, this script builds the output using the 'prototype' look-and-feel. You
- can choose a different output style by adding one of the following options to the
- command line:
- /property:PresentationStyle=vs2005
- /property:PresentationStyle=hana
- /property:PresentationStyle=prototype
-
- The default target is "Chm", which builds a CHM file for the DotNetOpenId assembly. You can
- also specify one of the following targets on the command line:
- /target:Clean - removes all generated files
- /target:HxS - builds HxS file for Visual Studio in addition to CHM
-
- NOTE: To build an HxS you must have the "Microsoft Help 2.0 SDK" installed.
- -->
-
-<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
- <PropertyGroup>
- <NetfxVer>2.0</NetfxVer>
- <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
- <ProjectRoot>..\..</ProjectRoot>
- <OutputAssembly>DotNetOpenId</OutputAssembly>
- <OutputPath>$(ProjectRoot)\bin\$(Configuration)</OutputPath>
- <DocOutputPath>$(ProjectRoot)\doc</DocOutputPath>
- <IntermediatePath>$(ProjectRoot)\obj\$(Configuration)</IntermediatePath>
- <DocumentationFile>$(OutputPath)\$(OutputAssembly).xml</DocumentationFile>
- </PropertyGroup>
-
- <Target Name="Build" DependsOnTargets="Compile;Chm" />
-
- <Target Name="Compile">
- <MSBuild Projects="..\DotNetOpenId\DotNetOpenId.csproj" />
- </Target>
-
- <Target Name="CompileCustomBuildTasks">
- <MSBuild Projects="..\DotNetOpenId.BuildTasks\DotNetOpenId.BuildTasks.csproj" />
- </Target>
-
- <Import Project="..\..\Tools\Sandcastle\sandcastle.targets" />
-
-</Project>
|