Questions tagged [vsdoc]
35 questions
2
votes
2 answers
Documenting an array of type T in vsdoc format for javascript, Did I Find a Bug?
Following these guidelines for vsdoc documentation, I've been unable to get intellisense to work properly for an array of a given type. Here is some code that demos the problem
function MyType() {
/// Class description here
…

Allen Rice
- 19,068
- 14
- 83
- 115
2
votes
2 answers
Why doesn't VSDoc IntelliSense work inside of a jQuery no-conflict wrapper?
/// <reference path="jquery-1.5.vsdoc.js" />
// IntelliSense works here.
function ($, window, document, undefined) { /// <param name="$" type="jQuery" />
// IntelliSense does not work here.
}(jQuery, this, document);
Is there a…

Code Maverick
- 20,171
- 12
- 62
- 114
2
votes
1 answer
Using Masterpages inhibits VSDoc help integration in VS2010
I am currently working on a MVC3 project in C# and VS2010 using a lot of jQuery.
I always wondered why I could not display the VsDoc help files although they are included in the right place and version.
I just found out that the VsDoc help does…

nttakr
- 1,637
- 15
- 25
2
votes
1 answer
Update vsdoc commets in javascript
Is there any tool to update VSDoc comments in the javascript library? Now I have the documentation in the VSDoc comments in the javascript file and in the separate xml file. And if I want to change something, I need to change it in the both places.…

Andrey M.
- 3,688
- 3
- 33
- 36
2
votes
2 answers
How to use jQuery in ASP.NET 4 master pages
I have an ASP.NET 4 web app.
I am using a Master Page Site.Master.
The head of the master page is:
gives me a drop down in…

user206890
- 531
- 6
- 17
1
vote
1 answer
VSDoc alternative?
VSDoc is an awesome way of commenting Javascript, and I particularly like the ability to make one Javascript file 'depend' on another. This paves the way for Javascript minifiers/combiners that take into account proper ordering of script…

Jonathan
- 32,202
- 38
- 137
- 208
1
vote
3 answers
VS2010 : javascript intellisense : specifying properties for 'options' objects passed to methods
Since javascript intellisense actually seems to work in VS2010, I thought I might add some to those scripts I include in almost everything.
The trouble is, on some complex functions, I use option objects instead of passing umpteen different…

Master Morality
- 5,837
- 6
- 31
- 43
1
vote
1 answer
Are there js intellisense files for underscore and other js libraries?
There are -intellisense.js or -vsdoc.js files for adding complete jQuery and jQuery Validation intellisense to Visual Studio - i.e. namespaces, functions, arguments, return values, remarks, etc.
Is there such a thing for Underscore? You get basic…

Bobby B
- 2,287
- 2
- 24
- 47
0
votes
1 answer
MS Ajax, Visual Studio, vsdoc MicrosoftAjax-vsdoc.js
Is there a vsdoc for ms ajax (MicrosoftAjax-vsdoc.js) ?

user206890
- 531
- 6
- 17