Visual Studio
Welcome to the Visual Studio UserVoice site. Let us know what you would like to see in future versions of the Visual Studio suite of products. This site is for suggestions and ideas. If you need to file a bug, visit the Visual Studio Connect site: http://connect.microsoft.com/visualstudio.
ASP.NET Runtime/Web Tooling suggestions have moved! All your ideas, including your votes, have been transferred and are searchable in the ASP.Net Uservoice forum. Please submit any new ASP.NET Runtime/Web Tooling suggestions, or vote on existing suggestions by going to http://aspnet.uservoice.com.
We look forward to hearing from you!
Thanks – Deon Herbert
Visual Studio Team
-
Get Context menus up faster
When you right click an item in Solution Explorer in particular the menu it is very slow in appearing. Make that faster and snappier. Context menu in editor is also slow, and can be improved too.
129 votes -
Coffeescript intellisense
Full support for Coffescript is needed
127 votes -
group pending changes instead of having a flat list of files
The pending changes view only offers one flat list of changed files. If you work on more than one topic in parallel it is quite cumbersome to check-in only the files from your workspace that cover that topic. Shelving does not really help here. Having the possibility to assign changes to certain groups would help a lot.
126 votes -
Provide .Net 4.0 Framework support for SharePoint
Provide .Net 4.0 Framework support for SharePoint 2010 so that .Net Framework v. 4.0 projects can be built and deployed to SharePoint 2010. In addition, a new/updated set of Visual Studio project templates should be introduced with the newest .Net Framework v.4.0 support.
125 votes -
Buy JetBrains and incorporate Resharper
JetBrains make Visual Studio a better app. Either learn from them, license from them, or buy them.
124 votes
Doug Turnure - msft
responded
recategorized this as Extension….
-
Allow humans to differentiate between files and folders in VS2012
The icons in the Solution Explorer has a very important purpose and function. And I'm (along with half of the world, it seems) not very pleased to see that this UX functionality was abandoned during this recent redesign.
The ability to differentiate files from folders.
This is the most important information that those icons has to provide the user with. By far. And there are three facts that prevents the "Hey, I'm a folder"-information from getting to the user:
1) The icon shape does not look like a classic folder (although an esoteric, modern one)
2) The icon is black…123 votes -
Give option to search only in uncommented code
When searching for a string in a project's source code, I often find myself wasting time examining lines that have been commented out. it would be useful to offer an option to return only lines that are not commented out, so as not to confuse the results.
122 votes -
Store per-project source formatting settings with project properties
I wish it were possible to define per-project editor settings that affect formatting and writing style: tab size, use tabs/spaces, autoindent and so on.
Because, different solutions (or even projects in one solution) can have different coding styles or conventions.
Having to poke in several tabs of environment settings every time as I switch projects is a major annoyance.
Actually the formatting settings are not private user preferences; they are part of a project and should be stored in source sontrol, so that the next person that takes on the code automatically gets the proper settings.
121 votes -
support parameters for radio buttons and checkboxes in MTM
I can use parameters while creating action recording and playback for text fields and drop down elements. This does not work for check boxes or radio buttons (For example, if I create a parameter with value "Yes" and use that for a check box, the binding does not work)
119 votesThis is already in the feature team’s backlog.
-
Enable Export to Excel for Web Application Template
Exporting to Excel is only available for local desktop applicaitons, but more applications these days are deployed as web applications. The export to Excel feature is incredibly valuable, and would be a great addition to applications deployed to the Web and Cloud.
119 votes -
Release more often
VIsual Studio is one of the only products I know of that has a lifetime of 2-3 years, and gets *one* update in that time.
That is ridiculous. It smells like a leftover from 20 years ago, when distributing updates was difficult. Today, it is inexcusable.
For each release, it gives you a window of perhaps two months where you're competitive. Then, for the next 2+ years, you stand still, while the competition zooms past you, after which you release a new version, and it all starts over again.
It also clashes with all your attempts at interacting with the…
118 votes -
ISO C++ wrappers for WinRT
Now that WinRT has been unveiled, a lot of people have criticized the C++/CLI-like quasi-C++ that is the recommended way to interface with the API. And honestly, it looks reasonably nice. If we're willing to give up all hopes of using another compiler than VC11, and don't mind non-standard code in our C++ application, it seem a nice way to interface with WinRT.
But how about an alternative?
How about offering a "best effort" library-only ISO C++ wrapper to make WinRT usage as simple as possible without relying on library extensions? It doesn't have to be as clean and pretty…
118 votes -
make dedicated C# syntax for IEnumerable<T> type definitions
Just like Nullable<int> can be written as int? I would like to be able to write int* in stead of IEnumerable<int>. This would of course also work for reference types like a custom defined Person class. IEnumerable<Person> would then be equivalent to Person*.
IEnumerable<T> has become a very important type within the .NET framework and in my opinion it would make sense to include some minor syntax in the C# language to avoid to have to write the types rather long name for example when defining method parameters and return values that are enumerable. The 'var' keyword isn't allowed everywhere…
117 votes -
C# Script window similar to LinqPad
I want to be able to write scripts to try out things that I would normally create a console application for. It should be really easy to reference projects from the solution that I have currently open and all editor features should be enabled, such as refactoring and intelisense.
Ideally after I have written code in a script I would then be able to easily move it into one of my projects.
117 votes -
Add ability to set wildcard into the reference path
Add ability to set wildcard into the reference path.
For example:
When I want to add all files from the subdirectory /path/to/files I must add files separately:
/// <reference path="../path/to/files/file1.js" />
/// <reference path="../path/to/files/file2.js" />
/// <reference path="../path/to/files/file3.js" />
...It will be more usefull if I have ability to setup references through wildcard:
/// <reference path="../path/to/files/*.js" />
or more widely:
/// <reference path="../path/to/*/*" />116 votes -
Return Multiple values from functions effortlessly without creating new classes for everything
When you think of it, its silly that methods by default can only return one value, but can take many arguments. Often times you want many return values, but it would be too painful to create classes/structs for each set, so often developers decide to then use ref or out parameters.
Instead what if method/function calls could return many values without the need to define a class/struct.
This example is a bit contrived but this shows the power of the fact that error information and values can easily be returned al at once.Syntaxt like:
private {int index, bool IsError=false,…
115 votes -
Static site/html generation as a project type with Publish support
Static file hosting (CDN) is by far the most cost-effective, reliable and scalable way to get content on the web. Unfortunately, Visual Studio doesn't make creating such sites easy. That's tragic since Visual Studio includes all the required technologies to create a best-in-class solution (project meta data, Razor, T4, Publishing, etc.)
A "Static Site Generator Project" would allow me to author master pages, html, content, css, javascript and "publish time" code. When published the project will generate a site than can be hosted via any static file serving service (including removable media). Operations done during publishing would include HTML generation…
113 votes -
Support elastic tab stops
Support elastic tab stops! Just look at the picture on this web site:
http://nickgravgaard.com/elastictabstops/
P.S. we should be able to make the choice between spaces/tabs/elastic tabs on a per-solution (or per-project) basis.
113 votes -
Allow Extesion Properties
I would like to be able to write extension Properties, not only extension methods.
113 votes -
Support Windows 8 apps in tfspreview hosted build
The hosted build controller in Team Foundation Server Preview should support building of Windows 8 applications.
113 votesWe are working on moving our build service from 2008 R2 to Server 2012 which will allow for the compilation of Windows Store applications
- Don't see your idea?