-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed an issue with titles generated for overloaded operators
- Loading branch information
1 parent
6ec8b37
commit 64ea9fb
Showing
14 changed files
with
109 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Sandcastle Help File Builder | ||
|
||
This package allows you to deploy the Sandcastle Help File Builder tools inside of a project to build help files | ||
without installing the tools manually such as on a build server. The following limitations apply: | ||
|
||
- You must install one or more of the Reflection Data Set packages based on which platform types you need: | ||
|
||
`.NET`, `.NETCore`, `.NETFramework`, `.NETMicroFramework`, `.NETPortable`, `Silverlight`, `WindowsPhone`, | ||
`WindowsPhoneApp`, and/or `UniversalWindows`. | ||
|
||
If multiple versions are available for any given reflection data set package, download the latest version as | ||
it will cover all prior versions as well. | ||
|
||
- Set the project's ComponentPath property to the .\packages folder so that the project can find the reflection | ||
data files and any other third-party build components, plug-ins, presentation styles, etc. deployed as NuGet | ||
packages. | ||
|
||
- Only the website, MS Help Viewer, Open XML, and markdown help file formats are supported unconditionally as | ||
there are no external tool dependencies for them. | ||
|
||
- To build Help 1 output, the required help compiler tools and components must be installed separately. Help file | ||
builds using that formats will fail if those components are not installed. | ||
|
||
- Any third-party build components, plug-ins, presentation styles, etc. not deployed as NuGet packages must be | ||
included within your project and must be placed within the project folder so that they can be found. | ||
|
||
- The `SHFBROOT` environment variable does not need to be defined. However, the help file project must contain a | ||
conditional property that defines the relative path to the SHFB tools folder within the main `PropertyGroup` | ||
element. | ||
|
||
Example: | ||
``` XML | ||
<PropertyGroup> | ||
<!-- NOTE: Update the version number in the path (YYYY.M.D.R) to match the package version --> | ||
<SHFBROOT Condition=" '$(SHFBROOT)' == '' ">$(MSBuildThisFileDirectory)..\packages\EWSoftware.SHFB.YYYY.M.D.R\Tools\</SHFBROOT> | ||
|
||
... other SHFB project properties ... | ||
|
||
</PropertyGroup> | ||
``` | ||
|
||
- No standalone GUI or Visual Studio support is provided for managing the help project and none of the non-essential | ||
tools or help files are included in this package in order to keep its size down to the bare minimum. If wanted, | ||
those items must be downloaded and installed from the GitHub project site using the guided installer: | ||
[https://GitHub.com/EWSoftware/SHFB](https://GitHub.com/EWSoftware/SHFB) | ||
|
||
See the [XCOPY/NuGet Build Server Deployment](http://EWSoftware.github.io/SHFB/html/50ad2c8c-5004-4b4c-a77f-97b8c403c9f2.htm) | ||
help topic for more details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
// System : Sandcastle Help File Builder | ||
// File : AssemblyInfoShared.cs | ||
// Author : Eric Woodruff ([email protected]) | ||
// Updated : 08/14/2022 | ||
// Updated : 08/15/2022 | ||
// Note : Copyright 2006-2022, Eric Woodruff, All rights reserved | ||
// | ||
// Sandcastle Help File Builder common assembly attributes. | ||
|
@@ -90,13 +90,13 @@ internal static partial class AssemblyInfo | |
// | ||
// This is used to set the assembly file version. This will change with each new release. MSIs only | ||
// support a Major value between 0 and 255 so we drop the century from the year on this one. | ||
public const string FileVersion = "22.8.14.0"; | ||
public const string FileVersion = "22.8.14.1"; | ||
|
||
// Common product version | ||
// | ||
// This may contain additional text to indicate Alpha or Beta states. The version number will always match | ||
// the file version above but includes the century on the year. | ||
public const string ProductVersion = "2022.8.14.0"; | ||
public const string ProductVersion = "2022.8.14.1"; | ||
|
||
// Assembly copyright information | ||
public const string Copyright = "Copyright \xA9 2006-2022, Eric Woodruff, All Rights Reserved"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
// System : Sandcastle Tools - Sandcastle Tools Core Class Library | ||
// File : TopicTransformationCore.cs | ||
// Author : Eric Woodruff ([email protected]) | ||
// Updated : 08/07/2022 | ||
// Updated : 08/15/2022 | ||
// Note : Copyright 2022, Eric Woodruff, All rights reserved | ||
// | ||
// This file contains the abstract base class that is used to define the settings and common functionality for a | ||
|
@@ -1287,7 +1287,8 @@ protected virtual XNode ApiTopicTitle(bool qualifyMembers, bool plainText) | |
titleParam.Add(this.ApiTopicShortNameDecorated()); | ||
|
||
// Only show parameters for operators and overloaded members | ||
if(this.ApiMember.ApiSubSubgroup == ApiMemberGroup.Operator && | ||
if(this.ApiMember.ApiTopicSubgroup != ApiMemberGroup.Overload && | ||
this.ApiMember.ApiSubSubgroup == ApiMemberGroup.Operator && | ||
(this.ApiMember.Name.Equals("Explicit", StringComparison.Ordinal) || | ||
this.ApiMember.Name.Equals("Implicit", StringComparison.Ordinal))) | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters