Math.NET Numerics
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

46 lines
1.8 KiB

<Project DefaultTargets="Generate" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5">
<!-- Sandcastle Help File Builder Tasks. http://www.codeplex.com/SHFB -->
<UsingTask TaskName="SandcastleBuilder.Utils.MSBuild.XslTransform"
AssemblyFile="$(SHFBROOT)\SandcastleBuilder.Utils.dll" />
<!-- Task properties -->
<PropertyGroup>
<PresentationStyle>{@PresentationParam}</PresentationStyle>
<SandcastlePath>{@SandcastlePath}</SandcastlePath>
<WorkingFolder>{@HtmlEncWorkingFolder}</WorkingFolder>
</PropertyGroup>
<!-- This defines the dependencies for the Generate target -->
<PropertyGroup>
<GenerateDependsOn>
BeforeGenerateIntermediateTOC;
GenerateIntermediateTOC;
AfterGenerateIntermediateTOC
</GenerateDependsOn>
</PropertyGroup>
<Target Name="Generate" DependsOnTargets="$(GenerateDependsOn)" />
<!-- The Generate Intermediate TOC target -->
<Target Name="GenerateIntermediateTOC">
<!-- Transform the reflection output based on the presentation style -->
<XslTransform Condition="'$(PresentationStyle)' == 'prototype'"
SandcastlePath="$(SandcastlePath)"
WorkingFolder="$(WorkingFolder)"
Transformations="ProductionTransforms\CreatePrototypeToc.xsl"
InputFile="reflection.xml"
OutputFile="toc.xml" />
<XslTransform Condition="'$(PresentationStyle)' != 'prototype'"
SandcastlePath="$(SandcastlePath)"
WorkingFolder="$(WorkingFolder)"
Transformations="ProductionTransforms\CreateVSToc.xsl"
InputFile="reflection.xml"
OutputFile="toc.xml" />
</Target>
<!-- The following targets may be overridden or replaced to perform
additional processing. -->
<Target Name="BeforeGenerateIntermediateTOC" />
<Target Name="AfterGenerateIntermediateTOC" />
</Project>