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:
manishKungwani
  • 925
  • 1
  • 12
  • 44
2
votes
1 answer

Is it possible to get intellisense for jquery in other js files?

I am working on a web page that has a reference to jquery and another js file with custom javascript for that page. Since the custom js file is external it isn't showing me intellisense for jquery. any way to get it to work?
Rush Frisby
  • 11,388
  • 19
  • 63
  • 83
2
votes
1 answer

Visual Studio Javascript Intellisense - options object

I'd like to get Intellisense support in Visual Studio for the options objects I use in my method calls. It's common to configure a call to a function in Javascript with a catch-all options object - for example jquery's Ajax call…
1
vote
2 answers

jQuery Intellisense: Common reference file (stdafx) for vsdoc

I moved the jQuery in my project over to Microsoft's CDN yesterday so finally have jQuery intellisense back. Yay! However, I apparently need to include the following in all my .js files: //These references should enable intellisense within this…
codinglifestyle
  • 179
  • 1
  • 10
1
vote
1 answer

How do I copy test report from docker to Agent when my dotnet tests fail in Docker Build?

I am trying to run my Automation "Specflow+ Runner" C# Test Cases using docker. I have a master.yml file which uses the Shared Agent and it builds docker image using Dockerfile. master.yml jobs: - job: run_docker_build displayName: Run UI…
1
vote
2 answers

3 Errors in jquery-1.6.1-vsdoc.js when using in Visual Studio 2008

I'm using Visual Studio 2008 SP1 with KB958502 (.vsdoc hotfix). This allows us to use IntelliSense to auto-complete JavaScript. When I use the jquery-1.6.1-vsdoc, there are three errors: Error updating JScript IntelliSense:…
Code Maverick
  • 20,171
  • 12
  • 62
  • 114
1
vote
1 answer

Visual Studio 10, JavaScript intellisense inside javascript.js file, and where is the MicrosoftAjax-vsdoc.js

I can get javascript intellisense going from and aspx or master page ie 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