csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
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.
34 lines
1.0 KiB
34 lines
1.0 KiB
|
|
# Sandcastle build script overrides for vs2005 doc model.
|
|
|
|
. $DxRoot\Presentation\Shared\SharedDocModel.ps1
|
|
|
|
function PostProcessReflectionData($sourceFile, $targetFile) {
|
|
WriteInfo "Post processing reflection data."
|
|
&$XslTransform $sourceFile `
|
|
/xsl:$DxRoot\ProductionTransforms\ApplyVSDocModel.xsl `
|
|
/xsl:$DxRoot\ProductionTransforms\AddFriendlyFilenames.xsl `
|
|
/arg:IncludeAllMembersTopic=true `
|
|
/arg:IncludeInheritedOverloadTopics=true `
|
|
/out:$targetFile
|
|
}
|
|
|
|
function CreateToc {
|
|
WriteInfo "Creating TOC."
|
|
&$XslTransform $TempDir\ReflectionData\targets.xml `
|
|
/xsl:$DxRoot\ProductionTransforms\createvstoc.xsl `
|
|
/out:$TempDir\toc.xml
|
|
}
|
|
|
|
|
|
function CreateSitemap {
|
|
WriteInfo "Creating sitemap file."
|
|
&$XslTransform $TempDir\toc.xml `
|
|
/xsl:"$DxRoot\ProductionTransforms\Vs2005TocToDsToc.xsl" `
|
|
/arg:topicInfo="$TempDir\TopicInfo" `
|
|
/xsl:"$DxRoot\ProductionTransforms\DsTocToSitemap.xsl" `
|
|
/out:"$WebOutputDir\api\web.sitemap"
|
|
|
|
}
|
|
|
|
$DocModelSupportsWebBuild = $true
|