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.
38 lines
1.4 KiB
38 lines
1.4 KiB
<Project DefaultTargets="Build" 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.BuildAssembler"
|
|
AssemblyFile="$(SHFBROOT)\SandcastleBuilder.Utils.dll" />
|
|
|
|
<!-- Task properties -->
|
|
<PropertyGroup>
|
|
<SandcastlePath>{@SandcastlePath}</SandcastlePath>
|
|
<ConfigurationFile>sandcastle.config</ConfigurationFile>
|
|
<ManifestFile>manifest.xml</ManifestFile>
|
|
<WorkingFolder>{@HtmlEncWorkingFolder}</WorkingFolder>
|
|
</PropertyGroup>
|
|
|
|
<!-- This defines the dependencies for the Build target -->
|
|
<PropertyGroup>
|
|
<BuildDependsOn>
|
|
BeforeBuildReferenceTopics;
|
|
BuildReferenceTopics;
|
|
AfterBuildReferenceTopics
|
|
</BuildDependsOn>
|
|
</PropertyGroup>
|
|
|
|
<Target Name="Build" DependsOnTargets="$(BuildDependsOn)" />
|
|
|
|
<!-- The Build Conceptual Topics target -->
|
|
<Target Name="BuildReferenceTopics">
|
|
<BuildAssembler
|
|
SandcastlePath="$(SandcastlePath)"
|
|
WorkingFolder="$(WorkingFolder)"
|
|
ConfigurationFile="$(ConfigurationFile)"
|
|
ManifestFile="$(ManifestFile)" />
|
|
</Target>
|
|
|
|
<!-- The following targets may be overridden or replaced to perform
|
|
additional processing. -->
|
|
<Target Name="BeforeBuildReferenceTopics" />
|
|
<Target Name="AfterBuildReferenceTopics" />
|
|
</Project>
|
|
|