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
-
request feedback from a task or PBI or an an attachment to said task or PBI
request feedback from a task or PBI or an an attachment to said task or PBI
2 votes -
Make it possible to link from a workitem to a shelveset
When having a workitem which is ready for code review, then it would be nice that one can link to the shelveset
12 votes -
add line count to code clone
Code Clone is AMAZING. I have a *LOT* of cloned code due to an old codebase. I would like to prioritize by lines of code that I can fix rather than clone count. Clone count isn't always all that useful, since it prioritiezes a few cloned lines repeated dozens of times rather than whole methods that are repeated a few times.
In fact, how about this - Clone Count, Lines Affected, Total Lines (count * lines)
3 votes -
Return entity from IDbSetExtensions.AddOrUpdate
DbSet.Add returns the argument. AddOrUpdate should too when only one entity is supplied.
1 vote -
Allow the use of relational operations in a case statement
Allow something like this in c#
switch(NumDays)
{
case > 5 :
do this
break;
case <=5
do that
break;
}I know that an if statement caters for this but i would like to do it in a case statement
3 votes -
Add full C++0x support
C++0x final is out,
please add full C++0x support in VC++ compiler2 votes -
Add Display for ListDictionaryInternal / Exception.Data
Currently, wenn an Exception instance has some data in the Data attribute, it is not possible to to inspect this data through visual studio.
Please add a sensible display (like for other dictionaries) to the System.Collections.ListDictionaryInternal, or at least a special case for Exception.Data.
1 vote -
seperate javascript files for pages
i want to manage javascript methods and logic per page, like the code behind (you can union all of them later on runtime
managing js methods in a central page is a big mess!2 votes -
please include a template parameter for intelisence suggestion to a function writing time with template
please include a template parameter for intelisence suggestion on a function writing time.
e.g.:
1. write "template<class A> void f(A".
2. write "&"; it's to the reference of the type A.
3. oops! it changed to "f(abort&" from "f(A".the problem is suggestions of the intelisence are not included type A.
it's bad for an user experience. I want write through with intelisence.
1 vote -
3 votes
-
Simplify the pictograms to much graphic detail defeats the object.
(Entering a suggestion causes lots of hang-ups)
Re the V11 development interface (Showing "Visual Studio" in the top band):
In order for a pictogram (icon) to be communicative, it only requires to be visually discriminating. Packing in a lot of graphic detail is non functional, causes visual information overload, and defeats the object.
Zach.
1 vote -
name attribute for anonymous methods
Instead of:
internal class chi
{
public readonly char ch;
public readonly int i;
public chi(char ch, int i)
{
this.ch = ch;
this.i = i;
}
}
public static int strspn(this string str, string charsToSkip)
{
return str.Select((ch, i) => new chi(ch, i ))
.Where(c => charsToSkip.IndexOf(c.ch) < 0).DefaultIfEmpty
(new chi('x', str.Length)).First().i;
}This:
public static int strspn(this string str, string charsToSkip)
{
return str.Select((ch, i) => (ch, i )[classname="chi"])
.Where(c => charsToSkip.IndexOf(c.ch) < 0).DefaultIfEmpty
(new chi('x', str.Length)).First().i;
}1 vote -
More efficient editing
We very much miss a context menu with the option to copy or move highlighted text by right-dragging the text to the cursor position. This function was extremely useful in VC6 and saved us hundreds of hours. When we want to insert text which is similar to a previous line, for example, we used to copy a variable, for example, to the clipboard.
We would then insert the variable from the clipboard, highlight the code we want to insert after the variable and right-drag it to the correct position. When the right button was released we could select copy or…1 vote -
Javascript Parser Navigation in Solution Explorer
The Javascript Parser VS2010 extension is awesome! I was able to easily dig into tons of OTHER people's cryptic Javascript code. The code as humanly minified to reduce page size. This capability needs to be integrated into Solution Explorer just like Solution Navigator Power Tools extension. The productivity will be amazing! Also, the ability to Mark (star/color/flag) a method is really great too!
2 votes -
r maven pre-installed in vs
I think vs needs something like maven or nuget pre-installed
3 votes -
WinCE supprt, please !
i need to create new win ce application, because producers are still producting new win ce devices and our customers use them. so i cannat devolop in .net 4 and over vs2008, help me !!
7 votes -
Include nuget references in the solution for purposes of source control.
After adding nuget packages to my solution, they should be referenced by in the solution explorer such that when I right click my solution and choose to check-in it will also check in the packages folders so that the references are updated for all developers. Currently this requires checking in from the project root through Source Control explorer or the file system.
12 votes -
1 vote
-
Release Burndown Chart
In Team Foundation Services Preview there is a very nice Sprint Burndown chart.
What I miss is a Release Burndown. I have a backlog with 100 stories for release 1.5 of my product. I would like to see a v1.5 burndown.
If I place sprints under v1.5 iteration path I can see a 1.5 backlog but the chart to the top right only shows Velocity over sprints. I would like to see 1.5 burndown.Thanks,
Simon15 votes -
Add option to run tests on save
Much like the Run Tests After Build; continuous testing should run tests on each save.
3 votes
- Don't see your idea?