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.
22 lines
710 B
22 lines
710 B
|
|
# Sandcastle build script overrides for vsorcas 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=false `
|
|
/arg:IncludeInheritedOverloadTopics=true `
|
|
/out:$targetFile
|
|
}
|
|
|
|
function CreateToc {
|
|
WriteInfo "Creating TOC."
|
|
&$XslTransform $TempDir\ReflectionData\targets.xml `
|
|
/xsl:$DxRoot\ProductionTransforms\createvstoc.xsl `
|
|
/out:$TempDir\toc.xml
|
|
}
|
|
|
|
|