Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 months ago.
Improve this question
I want to download VS 2010 Ultimate through my MSDN licence, but I don't see one for the 64-bit. There's Visual Studio Team Foundation Server 2010 (x86 and x64) - DVD (English), but is that just the server or can I use it for dev too?
There is no 64 bit VS 2010. If you can, you want to download the ultimate edition. It will give you everything you need to write along with the test tools etc. It will also allow you to access to use the premium edition code contract generation.
Team Foundation Server isn't an IDE. It's a code/project management tool.
Team Foundation Server is just that -- TFS -- the server side of Microsoft's source control solution. As Kevin said, Visual Studio itself is 32 bit only. There are a whole bunch of reasons why in this blog post.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I downloaded Visual Studio professional 2017 from the Microsoft website and installed the universal windows platform development.
I wanted to open a new c# project, but there were no options to console application, Windows Form, and a lot of others.
Which pack do I need to install from the Visual Studio installer?
You'll need to run the installer again and do "Modify" and make sure ".NET Desktop Development" is enabled to get Windows Form application project types you can also install "ASP.NET and Web Development" for web stuff or any others you might need, if have space + time install them all, if needed, but should only need to install the things you need.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am considering which version of MS Office 2016 to use for developing office apps. I will be using Visual Studio Community 2015. I would like to know which suite version of MS Office 2016 is compatible with developing apps. I am worried that using a "Home and Student" version will not work with Visual Studio 2015 Community, like the "Professional" version will.
Also, is it possible to develop with Office 365 or is the desktop version required.
You have to have access to the product in order to test your add-in (this is true even before Office 2016). So purchase the edition that contains the products you want to develop for.
That being said, many of the office apps are available for free as part of Office Online, and as long as you are willing to develop web-compatible add-ins, you don't need to buy anything.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
We're running SQL 2008 r2 Standard (we have Enterprise, but I'm waiting for IT to install it), I have some complex logic I need to write and T-SQL is just not cutting it. I currently have BIDS 2008 and Visual Studio 2015 Communnity installed. I know BIDS won't work, and I can't seem to figure out what type of project/template I need for VS 2015 (if it exists for it).
My question is: What is the latest (or best/most features), free version of Visual Studio that can create C# SQL Server 2008 r2 CLR Assemblies? Can I just download and run VS 2012 Express or something?
Normally money isn't an issue, but I don't have time to get it approved. Once I get rolling, which paid version would you recommend?
SQL Server 2008 R2 uses .NET 2.0 as its SQL-embedded CLR.
So any version of Visual Studio that can (still) target .NET 2.0 should be fine.
This includes the most recent VS 2015 (both the FREE Express and / or Community editions).
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I would like to learn C# and using Visual Studio 2013. There are a few different flavors of Visual Studio Express 2013: for Web, for Windows and for Windows Desktop. I am not really sure which one I should download. Can someone advise on this? I borrowed the book Professional Visual Studio 2013 from the library, but it seems that this book is targeted for the professional version of Visual Studio 2013. Would I still be able to use the Express version to work on the examples in the book?
Also, I want to learn WPF, WCF and Silverlight, do they come bundled with the Web, Windows or Windows Desktop flavor?
Thanks in advance.
You should download and install all 3 of the express edition since they are free and serve different purposes. However, I would suggest you to get a commercial version for many extra features and convenience.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
how do i view source code of text box that developed by microsoft in visual studio 2008 while i am programming with c# language in visual studio 2008?
.NET Reflector
If the text box is part of the .net framwork you can see its source by following theses steps Link
Reflector is good. But did you also try using the Microsoft Symbol server?
Link
http://msdn.microsoft.com/en-us/library/b8ttk8zy(VS.71).aspx
http://msdn.microsoft.com/en-us/library/b8ttk8zy.aspx
http://weblogs.asp.net/rajbk/archive/2010/04/21/setting-up-visual-studio-2010-to-step-into-microsoft-net-source-code.aspx
Unfortunately the .NET Framework is not Open-Source and you cannot browse the source code.
You can use Reflector to look into the Microsoft Assembly, but you won'ìt have direct access to the raw code.
In Visual Studio 2010, under Tools -> Options -> Debugging, if you enable "Enable .NET Framework Source Stepping" you will be able to do that.
VS will download symbols from the MS symbols server.