Tagged Questions
Sandcastle produces accurate, MSDN style, comprehensive documentation by reflecting over the source assemblies and optionally integrating XML Documentation Comments.
30
votes
3answers
282 views
Good alternatives to Sandcastle to generate MSDN-style documentation
I've been using Sandcastle for 2 years to generate the documentation for an open-source library. But now I'm looking for an alternative, because:
Even when using Sandcastle Help File Builder, ...
20
votes
3answers
337 views
How to localize the documentation of a .NET library
I have an open-source project (here) whose documentation is currently in French. The documentation is generated from XML comments in code, using Sandcastle. Now I would like to translate the ...
17
votes
4answers
6k views
DocProject vs Sandcastle Help File Builder GUI
I have several C# projects along with some internal library components that I'm trying to document together. Sandcastle seems to be the place to go to generate documentation from C#. I would like to ...
15
votes
3answers
6k views
Namespace documentation on a .Net project (Sandcastle)?
I started using Sandcastle some time ago to generate a Documentation Website for one of our projects. It's working quite well but we've always only written documentation for classes, methods, ...
14
votes
7answers
2k views
Sandcastle - still the right thing to use? Or are there alternatives?
I'm just wondering - the last release of Sandcastle is from May 2008, and it's still listed as Pre-Release Software/CTP and it's not even licensed anymore, as the EULA specifially says:
2.TERM. ...
10
votes
4answers
1k views
Is SandCastle a dead project? [closed]
Microsoft killed NDoc when they released a CTP/Beta version of Sandcastle.
And I rarely see information about new version of a usable version of sandcastle (with an integrated UI for example).
The ...
9
votes
2answers
455 views
Documenting Interfaces and their implementation
I'm decorating my C# code with comments so I can produce HTML help files.
I often declare and document interfaces. But classes implementing those interfaces can throw specific exceptions depending on ...
9
votes
6answers
1k views
XML Commenting tips for C# programming
Good morning, afternoon, evening or night (depending on your timezone).
This is just a general question about XML commenting within C#. I have never been very big into commenting my programs, I've ...
9
votes
4answers
1k views
Automatically Unit Test Example Code
My team is responsible for the development of an API for a large system that we also write. We need to provide example code so that other developers using our API can learn how to use it. We have been ...
9
votes
5answers
2k views
Does anyone know of a good MAML editor
At work we use Sandcastle for creation of help files. I have been using SandCastleGUI for some time and I'm looking for a way to create additional pages in the help file.
These pages are written in ...
8
votes
6answers
2k views
Help generation tool with MS Word and C# xmldoc support
I'm looking for a help/documentation generation tool which would satisfy such requirements:
it should support xmldoc comment produced by c# compiler or (even better) directly support sandcastle
it ...
8
votes
5answers
3k views
Generate html documentation automatically during a build with Sandcastle
What steps do I need to take to get HTML documentation automatically building via the build step in Visual Studio? I have all the comments in place and the comments.xml file being generated, and ...
7
votes
4answers
160 views
How to copy .NET API documentation?
If a class implements a method defined in an interface you can choose whether you duplicate the documentation or reference it with <see cref="..." />.
public interface IPerformer
{
/// ...
6
votes
3answers
93 views
Class Documentation Suggestions
We are a Microsoft shop, concentrated on using C#. We have several projects, including websites, Windows services, and class libraries, that incorporate XML comments.
I'm looking to generate ...
6
votes
1answer
385 views
C# - XML Commenting on partial classes/methods
Is there a standard way that the tools used to generate the API documents handle having XML Style comments on partial classes? Basically, how should one comment a partial class/method so that the ...
6
votes
1answer
234 views
How to generate msdn documentation from javascript? preferably using sandcastle
hi
is there a tool that i can use to generated msdn type documentation?
i recently just started playing with sandcastle and i found that there used to a tool called scriptdoc but it has been absorbed ...
5
votes
4answers
221 views
Missing summary tags for explicitly implemented interfaces?
Basically, I have the following code:
public class MyDictionary<TKey, TValue> : IDictionary<TKey, TValue>
{
/// <summary> My Summary </summary>
void ...
5
votes
4answers
4k views
Generate HTML / Help files from VS 2010 C# XML documentation
I am looking for a good tool creating HTML / Help files from my VS2010 XML documentation. I have found some commercial tools, such as
.Net documentation tool
VSDocman
I am sure there are more, I ...
5
votes
3answers
712 views
How to create MSDN like links in Sandcastle documentation website?
I've generated a website documentation of my project with Sandcastle. This website uses frames so when I click though sites my URL in browser does not change.
I would like to have URL changed in ...
5
votes
3answers
570 views
Can we speed up sandcastle?
We make use of sandcastle (and SHFB) to generate class library documentation from inline XML comments. It's a great tool to maintain complete and professional looking reference + overview ...
5
votes
2answers
198 views
SandCastle Help Builder: Search Functionality
I'm very happy with the output from SandCastle, but I would also like to have some search functionality included in the HTML output, is this possible?
5
votes
2answers
981 views
Convert Sandcastle Help File Builder Output (Web site) to MediaWiki format
I need to
convert my Sandcastle Help File
Builder (SHFB) output that is a Web
site (HTML) to Media wiki format
Find a way to transfer/include the
converted pages directly into the
MediaWiki we ...
5
votes
6answers
2k views
.Net XML comment into API Documentation
Is there an easy way to produce MSDN-style documentation from the Visual Studio XML output? I'm not patient enough to set up a good xslt for it because I know I'm not the first person to cross this ...
4
votes
4answers
144 views
How to configure TFS2010 Build server to generate help using SHFB
I've googled a lot to try to find a solution but it seems like I'm missing something.
Most articles tells me that I should modify the build file (TfsBuild.proj). But I cant find that file anywhere. ...
4
votes
3answers
97 views
C# class documentation in a printable form
Our C# source code is comprehensively documented using the usual Sandcastle/XML notation. We use SHFB to compile this into a MSDN-style documentation website.
We now need to*1 compile the ...
4
votes
2answers
151 views
XML Comments — How (or where) do you create XML comments for your namespaces and library?
I understand that if you /// above a class, field, method, or property Visual Studio will start establishing XML-style comments for you.
However, where can I go to add XML comments for my namespaces ...
4
votes
1answer
66 views
How do you know which project in Visual Studio builds very last?
I am building sandcastle documentation as per this answer: Generate html documentation automatically during a build with Sandcastle and I need to know which project in my solution builds very last. ...
4
votes
2answers
123 views
How do I generate HTML-only documentation from an aspdotnet web project?
I have commented all the code with the appropriate ms xml documentation tags. How do I generate HTML-only (or pdf) documentation for all of the commented code? I have downloaded sandcastle, but ...
4
votes
2answers
1k views
is there a sandcastle plugin for Visual Studio 2010?
I really like the help files generated using SandCastle on my projects... is there a plugin for Visual Studio 2010 for SandCastle, or another good alternative program that integrates directly with ...
4
votes
2answers
753 views
Can implementation classes “inherit” XML comments from their implemented interfaces?
Curious question. I'm using Microsoft's Sandcastle to generate documentation from the XML comments in my C# code. Several of my classes are implementing interfaces which already have commented ...
4
votes
4answers
1k views
How should I document my C# code?
I am building the documentation for our C# API containing:
A general overview and description of the current state as a doc/pdf file.
A class library API in a .chm file using Sandcastle.
...
4
votes
2answers
1k views
How to link / group overloads in C# XML comments?
In XML documentaiton comments for C#, is there a way to mark two or more functions to be overloads of each other, so that they reference each other automatically? Ideally, they'd also be grouped in ...
4
votes
8answers
3k views
Code documentation for delphi similar to javadoc or c# xml doc
I need a code documentation tool similar to javadoc or c# xml doc for delphi code. What is the best tool? I prefer a technology, which is in the future compatible to the Microsoft sandcastle project.
...
3
votes
4answers
186 views
What is the best way of documenting f# code?
I have tried Sandcastle with the patches included with the guided GUI installation, but unless I am doing something very wrong it's basically unsuitable for documenting F# code (even if it would work ...
3
votes
1answer
81 views
Sandcastle doesn't output everything from a F# assembly
It only recognizes top-level non-function value declarations.
e.g. let a = 2
and doesn't produce documentation for functions or type definitions.
I've checked the xml documentation file and it has ...
3
votes
0answers
129 views
XML Commenting — How to seealso to the method overload page? [closed]
Possible Duplicate:
How to make a cref to method overloads in a <seealso> tag in C#?
How can I XML comment my code so that I point to something like this instead of each individual ...
3
votes
3answers
216 views
XML Comments - Should see references be fully qualified?
Basically, when is it truly necessary (if at all) to use a fully qualified xml see reference:
<see cref="T:MyNamespace.Sub.MyType"/> //Option 1
<see cref="T:MyType"> //Option 2
Also, ...
3
votes
1answer
216 views
Can XML be documented using Doxygen, Sandcastle, or other documentation generators?
I am currently using Sandcastle, Doxygen, and JavaDoc to generate documentation for code I have written. Is it possible to document XML schemas using these packages? If not, are there any (preferably ...
3
votes
1answer
256 views
Generate WCF documentation using SandCastle
I'm trying to generate external documentation for a WCF service using SandCastle. How can I tell SandCastle to use the WCF attributes like ServiceContract for naming the functions and entities instead ...
3
votes
2answers
184 views
Does Sandcastle support code contracts?
My library uses code contracts.
Is there a way to incorporate these contracts in the documentation generated by sandcastle?
3
votes
1answer
715 views
Documenting using Sandcastle: Refering to enum value using <see>
I'm using Sandcastle 2.4.10520 and Sandcastle Help File Builder 1.8.0 to generate a .chm help file.
In my documentation, I'm using <see> tags.
If I try to refer an enum like <see ...
3
votes
1answer
354 views
adding class diagrams from VS2008 to Sandcastle help file
I've made class diagrams for my projects in Visual Studio 2008 Team System and I want to embed these diagrams in my Sandcastle .chm file. I keep finding references to the Drawbridge component for ...
3
votes
0answers
61 views
Change icons in Sandcastle
Does anyone know if it's possible to change the icons in the TOC treeview (the purple books) in Sandcastle compiled chm files? I've searched the SandCastle install folder but could not find these ...
3
votes
2answers
746 views
Sandcastle unified documentation generation for C# and Java projects
I have a set of related components that are basically provide the same functionality for various 'client' environments, like CLR and Java. Currently I'm generating my documentation using Sandcastle ...
3
votes
1answer
1k views
put example code in documentation by using sandcastle
i'm generating documentation files from the xml comments of my c# code, by using sandcastle help file builder. do you know how to include code examples into the help file, like msdn style?
3
votes
1answer
790 views
Sandcastle Help File Builder and VS 2008
how to add a sandcastle help file builder project (.shfbproj) to a visual studio 2008 solution?
3
votes
14answers
1k views
Code documentation: How much is too much?
How much code documentation in your .NET source is too much?
Some background: I inherited a large codebase that I've talked about in some of the other questions I've posted here on SO. One of the ...
3
votes
8answers
1k views
Tool for generation MSDN-like documentation from <summary> tags?
Does anyone know any tool like NDoc that could generate MSDN-like documentation out of XML comments in the C# code? I need it for .NET 3.5 and C#.
Sandcastle maybe?
Thanks.
I just installed and ...
2
votes
2answers
89 views
C# Documentation generator that runs on mono?
I mainly use mono and now I would like to produce some HTML output of the inline xml documentation. I've found 3 documentation projects so far:
NDoc, which seems outdated and development has stopped ...
2
votes
0answers
45 views
Code Contracts + Sandcastle — Any way to customize the exceptions section?
I'm using Code Contracts ver: 1.4.40602.0
I copied the necessary Content and Transforms files
Sandcastle outputs the exceptions based upon my contract requirements
Example Code:
public class ...