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
-
Add ctrl-click go to definition from Productivity Power Tools
The VS2010 Productivity Power Tools had a ctrl-click go to definition feature. This was great and could be an easy option to add (does not need to be on by default).
205 votes -
Allow to move more than one file at once in TFS source control
It is currently only possible to move files one by one in TFS source control, which means that it takes a lot of time to move several files from one place to another place. It would be great if one could select multiple files and move them to another place at once.
204 votes -
Make TFS more Audit Friendly
We have outside auditors come in and they want to see stuff like who gave Jerry Project admin rights and when and how long did he have it? Items like that It would be nice to find info like that. It would also be nice to be able to export all of the users of a project in the groups that they are in.
203 votes -
Speedier F# compiling
Compilation in F# awfully slow. Please improve this!
200 votes -
Visualize the rights of a user/group on all different aspects of a Team Project
You can set rights in TFS on a lot of different levels. On Team Project, Area/ Iteration/ Team Queries, Source Control/ Folders/ Files, Builds / Reports / SharePoint. Especially in TFS with different TFS groups that sometimes contain the same users/groups, it is hard to see why a user has a specific right or is not allowed to do something. At the moment it is hard to find this without checking everything manually.
199 votes -
Testers should be able to get parameters for a test case from a csv file
MTM should allow parameters for a test case to be picked up from a csv file or an Excel file
199 votesThis is the feature team’s backlog
-
Provide Better DirectX support in WPF
These DirectX support classes are new in WinRT / Metro. Please provide them in WPF.
SurfaceImageSource enables full composition of DirectX content into a XAML app. This allows drawing DirectX content into the XAML visual tree, useful for complex image effects, data visualization, and other immediate-mode drawing scenarios.
VirtualSurfaceImageSource is used for large-scale virtualized content. This is targeted toward apps that require panning and zooming of large content, like maps and document viewers.
SwapChainBackgroundPanel targets full-screen, DirectX-focused scenarios. This is great for games and other low-latency, full-screen DirectX apps with a XAML overlay.
197 votes -
Ensure that you do not release a future version of Visual Studio without BIDS (SSRS, SSIS) support.
Please ensure that you do not release any future versions of Visul Studio that do not have full support for (BIDS) SSRS, SSIS. This has resulted in a significant delay in rolling out VS2010 here, and in fact now that I heard BIDS will not be supported in Windows XP, we may skip VS2010, so now our team is missing out on so many great features.
197 votes -
Support C++ initializer lists: std::vector<double> v = { 1, 2, 3.456, 99.99 };
See http://www2.research.att.com/~bs/C++0xFAQ.html#init-list
Some examples:
vector<double> v = { 1, 2, 3.456, 99.99 };
list<pair<string,string>> languages = {
{"Nygaard","Simula"}, {"Richards","BCPL"}, {"Ritchie","C"}
};map<vector<string>,vector<int>> years = {
{ {"Maurice","Vincent", "Wilkes"},{1913, 1945, 1951, 1967, 2000} },
{ {"Martin", "Ritchards"} {1982, 2003, 2007} },
{ {"David", "John", "Wheeler"}, {1927, 1947, 1951, 2004} }
};197 votes -
Make "Go To Definition" faster (C++)
Clicking on that option often takes 5-10 seconds and it completely hangs the GUI.
195 votes -
Support IntelliSense and underlining of errors in F# Interactive
It's a big annoyance to not have auto completion there. C# Interactive from Roslyn supports it, and even the Immediate pane of C# and VB also have it
192 votes -
Work with the R# team to make VS startup with R# inside faster
R# is a super popular addin and dramatically slows down VS startup. This situation certainly impacts negatively the VS startup issue many are complaining about.
Through he VSIP program R# guys and VS guys should meet and see how the R# bulk code (>40MB of dlls) load could be smartly deferred when the user is choosing a sln / loading a sln / starting work with a sln.
192 votes -
Support a JavaScript Project type in Visual Studio
Please provide a new project type in Visual Studio for developing JavaScript components.
The new project type could have the following features:
- Contains .js, .css, and .html files.
- Represents a complete UI component - i.e. a module or widget.
- Runs JSLint or JSHint on build and reports any errors and violations.
- The build ouput is minified JavaScript and CSS; there should be options for specifying a minifier.
- The build output should also output any HTML files (as ASP.Net partial views).
- The new project type permits adding references to other JavaScript projects.
- Intellisense is…191 votes -
XML comments schema customization in C#
Allow to customize the XML tags recommended for use in XML inline comments for documentation.
Just as in VB, a CSharpXMLDoc.xml could be saved in AppData to pass C# editor the customized XML elements.
191 votes -
189 votes
-
Fix it so that .NET apps can access HTTP thru authenticating proxy server by default
If you run a .NET app that needs to talk to the web, and you're behind an authenticating proxy server, then that app will fail to talk to the web.
Internet Explorer and Google Chrome work, Visual Studio and loads of other Microsoft apps will work. They can all talk to the web. But every .NET-based app or website I've ever seen will fail.
The implications of this are profound. I've seen umpteen forum posts over the years where people are scratching their heads, wondering what's wrong. I've seen IT guys re-route their users thru special-case connections to the web,…
189 votes -
Please update Visual Studio Metrics Power tool to support VS2012 and FxCop 11
The Metrics Power Tool for Visual Studio 2010 is not compatible with the version of FxCop that ships with Visual Studio 2012. It looks like the interface changes that cause the break are minimal.
We use the Metrics Power tool in our build process and derive a number of reports from the data gathered during the nightly builds.
Please release an updated version of the Metrics Power tool which works with FxCop 11 or release an updated installer of the powertool that includes the correct dependencies so that it can be used without having to install Visual Studio 2010 alongside…
187 votes -
Add many-to-many relation support
Today it is a lot of manually coding to build a application with a many-to-many relation.
It would be nice to have more out of the box support for this.187 votesThanks for this suggestion. We’ve added it to our product backlog and will consider it for a future release.
-
Add a RowTest attribute to MSTest to facilitate parameterized tests.
It would be great to have a RowTest attribute (like in NUnit) added to facilitate parameterized tests, like:
[RowTest]
[Row(10, 10, 100)]
Public void Add_MultipleValues_ReturnsSum(int x, int y, int expected) { … }184 votesI have added an item in the product backlog for this.
-
Allow Windows Phone 8 Development on non-SLAT processors
I'm sure there are many developers out there with "older" systems that are completely capable of running Windows 8 64-bit and Visual Studio 2012 but are not able to develop and test Windows Phone 8 applications because of Microsoft's choice to make the Windows Phone 8 emulator a Hyper-V virtual machine. There should be a mechanism to run the emulator using either VMware Player or VirtualBox which will use SLAT if it's present but will continue to work if it isn't or update Hyper-V to do the same.
I don't understand this choice as I am able to write applications…
184 votes
- Don't see your idea?