Project:
CruiseControl.NET
Code Location:
git://github.com/ccnet/CruiseControl.NET.gitmaster
CCNet.shfbproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> <PropertyGroup> <!-- The configuration and platform will be used to determine which assemblies to include from solution and project documentation sources --> <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> <SchemaVersion>2.0</SchemaVersion> <ProjectGuid>{5db725cb-0d8a-4905-8a45-68160d465572}</ProjectGuid> <SHFBSchemaVersion>1.8.0.0</SHFBSchemaVersion> <!-- AssemblyName, Name, and RootNamespace are not used by SHFB but Visual Studio adds them anyway --> <AssemblyName>Documentation</AssemblyName> <RootNamespace>Documentation</RootNamespace> <Name>Documentation</Name> <!-- SHFB properties --> <OutputPath>Help\bin\</OutputPath> <HtmlHelpName>CruiseControlNET</HtmlHelpName> <HelpFileFormat>HtmlHelp1x</HelpFileFormat> <ProjectSummary>Documentation for CruiseControl.NET.</ProjectSummary> <HelpTitle>CruiseControl.NET Common Communications Client</HelpTitle> <Preliminary>True</Preliminary> <PresentationStyle>Prototype</PresentationStyle> <MissingTags>Summary, Parameter, Returns, AutoDocumentCtors, Namespace, TypeParameter</MissingTags> <HtmlHelp1xCompilerPath>Tools\HTML Help Workshop\</HtmlHelp1xCompilerPath> <SandcastlePath>Tools\Sandcastle\</SandcastlePath> <DocumentationSources> <DocumentationSource sourceFile="build\remote\ThoughtWorks.CruiseControl.Communications.dll" /> <DocumentationSource sourceFile="build\remote\ThoughtWorks.CruiseControl.Communications.xml" /> </DocumentationSources> <HelpFileVersion>1.5.0.0</HelpFileVersion> <ComponentConfigurations> <ComponentConfig id="Post-transform Component" enabled="True" xmlns=""> <component id="Post-transform Component" type="SandcastleBuilder.Components.PostTransformComponent" assembly="{@SHFBFolder}SandcastleBuilder.Components.dll"> <!-- Code colorizer files (required). Attributes: Stylesheet file (required) Script file (required) "Copy" image file (required) --> <colorizer stylesheet="{@SHFBFolder}Colorizer\highlight.css" scriptFile="{@SHFBFolder}Colorizer\highlight.js" copyImage="{@SHFBFolder}Colorizer\CopyCode.gif" /> <!-- Base output path for the files (required). This should match the parent folder of the output path of the HTML files (see SaveComponent). --> <outputPath value="Output\" /> <!-- Logo image file (optional). Filename is required. The height, width, altText, placement, and alignment attributes are optional. --> <logoFile filename="{@ProjectFolder}Help\CCNet-Icon.png" height="0" width="0" altText="" placement="left" alignment="left" /> </component> </ComponentConfig> <ComponentConfig id="Code Block Component" enabled="True" xmlns=""> <component id="Code Block Component" type="SandcastleBuilder.Components.CodeBlockComponent" assembly="{@SHFBFolder}SandcastleBuilder.Components.dll"> <basePath value="{@ProjectFolder}" /> <languageFilter value="true" /> <allowMissingSource value="false" /> <removeRegionMarkers value="false" /> <colorizer syntaxFile="{@SHFBFolder}Colorizer\highlight.xml" styleFile="{@SHFBFolder}Colorizer\highlight.xsl" copyImageUrl="../icons/CopyCode.gif" language="cs" tabSize="3" numberLines="false" outlining="true" keepSeeTags="false" defaultTitle="true" /> </component> </ComponentConfig> </ComponentConfigurations> <PlugInConfigurations> </PlugInConfigurations> <NamespaceSummaries> <NamespaceSummaryItem name="ThoughtWorks.CruiseControl.Remote" isDocumented="True" xmlns="">Common communications client. This library provides a common standardised way of communicating with a CruiseControl.NET server.</NamespaceSummaryItem> <NamespaceSummaryItem name="ThoughtWorks.CruiseControl.Remote.Messages" isDocumented="True" xmlns="">Message formats for communicating with the server. Most protocols will convert the request into a message which is then sent to the server. When the server has finished processing the request a response message will be returned.</NamespaceSummaryItem> <NamespaceSummaryItem name="ThoughtWorks.CruiseControl.Remote.Parameters" isDocumented="True" xmlns="">These are used for dynamic build parameters.</NamespaceSummaryItem> <NamespaceSummaryItem name="ThoughtWorks.CruiseControl.Remote.Security" isDocumented="True" xmlns="">These are used for security settings.</NamespaceSummaryItem> </NamespaceSummaries> </PropertyGroup> <!-- There are no properties for these two groups but they need to appear in order for Visual Studio to perform the build. --> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> </PropertyGroup> <ItemGroup> <Folder Include="Help\" /> </ItemGroup> <ItemGroup> <None Include="Help\Connect to a Server via Remoting.aml" /> <None Include="Help\Connect to a Server via HTTP.aml" /> <None Include="Help\Add a New Transport Protocol.aml" /> <None Include="Help\Advanced Tasks.aml" /> <None Include="Help\Common Tasks.aml" /> <None Include="Help\Getting Started.aml" /> <None Include="Help\Welcome.aml" /> </ItemGroup> <ItemGroup> <ContentLayout Include="Help\Main.content" /> </ItemGroup> <!-- Import the SHFB build targets --> <Import Project="$(SHFBROOT)\SandcastleHelpFileBuilder.targets" /> </Project>
