0
votes
0answers
26 views

How to remove XML documentation from project output directory?

After installing package with NuGet, I found the xml file in my output directory. That is installed library documentation. But I have no idea, why do I need it in the output folder of my project? Can ...
2
votes
2answers
30 views

How to install visual studio documentation offline?

I have suffered trying to download documentation using Visual Studio's Help Library Manager. It just gets stuck after downloading 2 out of 5 books, and there is no option to pause and resume. Does ...
0
votes
1answer
28 views

Omit specific properties

In Visual Studio, is there a way to decorate specific properties to exclude them from the default xml documentation that a C# project generates? Take the following example: /// <summary> /// ...
3
votes
2answers
206 views

Create html documentation for C# code

I don't normally do any C# development so please excuse my noobness, but I'm currently working on a C# project and VisualAssist generates these fancy /// <summary></summary> comments for ...
3
votes
1answer
86 views

Is there a tool to document .net code across multiple solutions?

We are looking to implement a documentation solution that would allow us to search all of our solutions and projects for potential reusable code. An example would be services. If we create a handful ...
0
votes
0answers
115 views

Can Visual Studio 2012 architecture diagram elements cross-reference one diagram to another?

Let's say I have the following diagrams in Visual Studio 2012's architecture tools: LoginPage.activitydiagram HandleUserLogin.activitydiagram UserDashboard.activitydiagram LoginPage - contains an ...
2
votes
2answers
764 views

A code documentation tool for visual studio

I would like to be able to add files into my source directory, containing descriptions, explanations and notes about namespaces, processes, system architecture, ... Does there exist a tool which i ...
2
votes
1answer
69 views

Programatically access the MSDN classes and documentation?

I need to access the full set of .NET and Windows classes from the MSDN documentation. I've installed the MSDN docs from the Visual Studio 2012 DVD. I know of the URL method of programatically ...
0
votes
0answers
94 views

Visualize the generated XML code documentation with Visual Studio

My Visual Studio generates the XML documentation for my projets into an XML file. At the moment, I don't need to generate custom documentation with external tools. I just need to open the ...
2
votes
2answers
234 views

WYSIWYG Editor for XML Comments in Visual Studio [closed]

I'm trying to find a WYSIWYG editor for XML documentation comments. Do you know of a good one? I'm looking for something in the form of a Visual Studio plugin. I have Sandcastle installed, and am ...
0
votes
1answer
73 views

Documentation Using Visual Studio

I got the request from my manager to prepare the documentation for entire datawarehouse environment using Visual Studio. Is there any way to create documentation using visual studio?????
3
votes
0answers
106 views

Glut Documentation on Visual Studio

Is it possible to add Glut and openGL documentation to Visual Studio 2010? How is it done? Intellisense indeed works, but I wondered if it was possible to add also the documentation when browsing the ...
1
vote
1answer
228 views

Script Error occur in VS 2012 Help Viewer

I am using Sandcastle Help file builder (1.9.4.0), Sandcastle (2.7.0.0) and .NET Framework 4.0 assemblies to generate the Class reference for Visual Studio. I have used Framework version is .NET ...
0
votes
2answers
399 views

C/C++ compiler warnings list for Visual Studio [duplicate]

Possible Duplicate: Where can I get a list of all errors & warnings? Is there any place where I can find a complete list of C/C++ compiler warnings for Visual Studio (cl.exe). I ...
0
votes
1answer
174 views

Visual Studio Automatically generate XML Documentation with XSLT

I have VS.Net set to automatically generate an XML with the XMLDoc comments in my code on build. This is done through the build properties of the project. I also have an XSLT to style the XML. Is ...
7
votes
3answers
1k views

Auto-generate documentation for single c# file in asp.net project?

I'm trying to figure out how to automatically generate documentation for a single c# file in an ASP.NET project. I'm using VS 2010, and I have SandCastle, but I'm starting to get the impression it ...
2
votes
1answer
45 views

Why is some content on MSDN versioned by both framework version and Visual Studio version?

When viewing MSDN documentation, there is a drop down list at the top of the page which enables selection of the framework version you're interested in. Occasionally that list does not contain only ...
1
vote
1answer
191 views

Separate documentation from code

I don't know if it's possible but I'm wondering if there is a way to keep the code and the documentation in separate files but still work the same as it does normally with inline documentation.
6
votes
3answers
506 views

Best way to add developer documentation to your Visual Studio projects

Basically, the question is: Where (and in which format) should I store textual developer documentation associated with my Visual Studio projects? To elaborate: XML comments are great, but they don't ...
1
vote
2answers
240 views

Force Documentation in VS(2010)

I am simply searching how to obtain errors/warning for each function/member that isnt documented. Im pretty sure I managed to do this on one of my projects, but cant find how to do it here on my ...
2
votes
1answer
141 views

Context-Sensitive Help for WinForms

I work on a large WinForm project, and the client would like to implement the Context-Sensitive Help in the forms. Say when the user press F1 in a Name textBox, "something" linked with that TextBox ...
1
vote
4answers
1k views

Generate code documentation to a MS Word file

I would like to generate code documentation (C#, .net4) to MS Word file (.doc, .docx). This is not because I think it is better, but because it is easier to version control when compared to a set of ...
3
votes
1answer
541 views

Auto-Generate Visual Studio VsDoc for JavaScript library

I'm in the process of refactoring my JavaScript library to utilize a single namespace. We have ~200 modules, which previously registered themselves as jQuery plugins or on the global object (bad). In ...
0
votes
1answer
80 views

how to insert my documentation file that generate from comments of source code to IDE?

I build documentation directly from my comments of source codes. I used JavaDoc tools for eclipse and XML comments in Visual Studio. because I programming to C# and Java. now, I want to insert this ...
13
votes
2answers
2k views

How to write C++ comments that show up in Intellisense?

I'm programming in C++ using Visual Studio 2010 Ultimate. I want to document some functions and I want the documentation to show up in Intellisense. According to MSDN, I just need to put the comment ...
0
votes
3answers
1k views

How to add documentation tooltip to classes, methods, properties, etc. in C#?

Not sure if I'm even calling this right but I wanted to start adding some documentation to my classes, methods, properties, etc. I know this is probably super obvious but I never really learned it. ...
4
votes
4answers
388 views

Documentation from all comments in Visual Studio 2010

How can create a documentation from all classes, methods and attributes comments in Visual Studio 2010 for the C# language?
10
votes
3answers
322 views

Tools, methodologies and processes for creating good documentation of C# API and product

We're developing an in-house used tool that is now being officially "released". As part of this, we'd like to document the tool's features, usage guide and code API. What I am after is: Tools that ...
3
votes
1answer
394 views

Images as a part of source code documentation / comments?

My question is similar to Adding images into source code, but my environment is Visual C++. Is there some way how to add images as a part of comments and make the IDE to display them (either inline, ...
1
vote
4answers
589 views

.Net Framework documentation location

im working on a documentation project and i need to parse the .net framework documentation. I want to use NDoc for that. I have successfully installed the .net framework and the msdn library. The ...
0
votes
0answers
160 views

Visual studio application documentation and design planning

I am looking for a structured way to document my application (not including the XML documentation), including information on design choices, code structure, system design, and also a way to make plans ...
0
votes
1answer
26 views

how can I import the documentation to the new project that reference the dll?

hi I am working with Library called Lucene.net. I dowloaded the Visual studio 2010 ".sln" project for this library using SVN and the output of this ".sln" project is a DLL and to use this library I ...
0
votes
1answer
114 views

How to integrate own API docs in Visual Studio 2008?

We create API docs with Sandcastle (Help File Builder) and now want to integrate them into Visual Studio 2008. How can the API be integrated or added as an external (web) resource?
9
votes
4answers
902 views

Inherit documentation in C#?

From Java and Eclipse I'm used to @inheritDoc that allows to use the same documentation as in the base class/method. I couldn't find anything similar in C# and Visual Studio 2010? Any hints?
1
vote
2answers
236 views

How to anchor metadata to read-only code in Visual Studio 2010

Relating to my earlier question regarding Annotate code in VS 2010 without changing that code. I have decided to try my hand at writing an extension for Visual Studio to allow the annotation of code ...
5
votes
2answers
724 views

Annotate code in VS 2010 without changing that code

I have just started a new job, and am trying to familiarise myself with a large C# solution, of 330 odd projects. Ideally I would like to attach comments and questions to pieces of code without ...
4
votes
4answers
2k views

Is there a VSDoc file for jQuery 1.5?

Where can I find a VSDoc file for the 1.5 version of jQuery?
1
vote
3answers
373 views

Generate wiki documentation for C#?

Is there some tool that can generate wiki pages from a C# documentation?
2
votes
1answer
192 views

Visual Studio style XML Documentation in XCode?

I've just wasted a better part of 30 mins searching for an answer to the following question: Is there any way to quickly generate documentation in XCode for Methods similar to Visual Studio's "///" ...
2
votes
1answer
98 views

Standard documentation of Visual Studio commands?

Visual Studio has a concept of commands, i.e. actions executable by pressing a shortcut, entering them on the Command Window etc. Visual Studio itself documents its commands (at least some of them) ...
3
votes
4answers
443 views

how to export documentation from C# classes into HTML?

how to export documentation from C# classes into HTML?
1
vote
1answer
150 views

How do I make a docstring in VB.NET?

I'm writing a .dll in Visual Basic. When writing code in Visual Studio if I do something like Console.WriteLine( it will pop up a tooltip with a bit of documentation for the function. Is it ...
5
votes
3answers
241 views

How to display full documentation of a method as you type in VS?

The title is pretty descriptive... Is there any extension that let me see FULL documentation of the method I'm typing ? I would like to see the documentation as I can see it in Object Browser with ...
12
votes
4answers
10k views

Visual studio c++ documentation generator

Is there a way to get documentation(like javadoc) in a visual-c++ project? I'm using visual studio 2010. thanks!
0
votes
1answer
416 views

Visual Studio add-in to support images inline with source?

We use Visual Studio 2005 here, and in an attempt to improve the documentation of our source, we're looking for a Visual Studio add-in that will allow images to be viewed in line with source from ...
2
votes
1answer
47 views

Link objects as fields in UML diagram

I'm trying to generate a diagram for a design document. I've generated a class diagram in VS. At the moment it's just a bunch of unconnected boxes as there isn't any inheritance going on. It feels ...
4
votes
1answer
671 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 ...
0
votes
1answer
39 views

VS2008 Help: How can I limit the index & search to just topics I want?

Time was that I could F1 a symbol in my .cpp or .h file, and I'd be given a reasonable list of possible topics to delve into. That was long, long ago. These days, I press F1 and I'm rarely given ...
10
votes
1answer
461 views

Show <returns> xml tag into visual studio intellisense

I added the xml tag to some of my methods but I can't see its content in the intellisense here is my code /// <summary> /// we all live in a yellow summary /// </summary> /// ...
1
vote
2answers
56 views

Filter assemblies/namespaces out of Visual Studio 2005 Documentation index

Is there any way to remove certain assemblies or namespaces from the index of (or entirely from) the Visual Studio 2005 Documentation? System.Web.UI and System.Windows.Forms contain many identical ...

1 2