Is CodeRush Xpress (the free edition of CodeRush) compatible with Visual Studio 2012?
The official response from Alex Skorkin has been that it is not supported:
I'm afraid that CodeRush Xpress is not going to be available in Visual Studio 2012.
However, it actually is and has been supported. Just download and install it as normal. A staff member has eventually confirmed this:
The latest version of CodeRush Xpress (11.2.13) supports Visual Studio 2012.
The official page also bears the following badge:
FULL SUPPORT for Visual Studio 2012
I'm afraid that CodeRush Xpress is not going to be available in Visual Studio 2012.
Related
I have Visual Studio Professional 2017, and the project I'm using requires Common Tools for Visual C++, which I don't have installed.
However, I can't find it on the Visual Studio 2017 installer nor the Microsoft official website. Any suggestions?
Get the VS 2017 installer here. You can get the "Trial" versions of Professional or Enterprise and then upgrade them to full versions with your license key.
And get other VS installers here.
As Chuck Walbourn said, Common Tools for Visual C++ does not exist for Visual Studio 2017. The component that I was missing was Common Tools for Visual C++ 2015.
I have a programm using an GSL library which worked quite well with Visual Studio 2013. Now I set up a new Windows version and installed Visual Studio 2015 RC Community.
After that I can not compile the code anymore. After converting the code to the new tool set I got the error that some external symbols of the libraries could not be found. I think this has something to do with the fact, that the library was build with Visual C++ v120.
So is there a possiblilty to add this Compiler Version to the Studio? And does it work without trouble next to a new version installed. I do not want to install the older version of VS, because of the possibility of some troubles haveing to version parallel installed.
You can install VS2013 toolset version from your VS2015 installer without installing visual studio 2013. From the 2015 installer, select Windows 8.1 and Windows Phone 8.0/8.1 Tools. Thats it.
Found it in a msdn forum (have to be the first time something is actually solved in a microsoft forum)
Install Visual Studio 2013
Open your Project in Visual Studio 2015
In the General page of the Project Properties, change the Platform Toolset to "Visual Studio 2013 (v120)"
You never have to open Visual Studio 2013; you just have to install it so that Visual Studio 2015 can find the toolset. (Unfortunately there is no way to install just the toolset.)
If so, how do i turn it on? I don't see it under Tools-> Options
If not, anywhere I can download it?
Here is the product matrix from the Microsoft Visual Studio 2012 site.
It shows that it is only available for the Ultimate edition.
Are you sure your coworker has it on Pro?
Intellitrace is not available in Microsoft Visual Studio Professional version, intellitrace is available in Visual Studio Ultimate edition only.
Yes, you can have Intellitrace in Visual Studio 2013 Professional, because there is a bug in Visual Studio licencing system. It happen in some circumstances.
I'm interested in using Cinder, but version 0.8.4 only supports VS 2008 and VS 2010. Has anyone been able to get Cinder to work/compile on VS Express 2012?
Support for Visual Studio C++ 2012 (Express) has been added in the recently released version 0.8.5.
See for more information: http://libcinder.org/blog/posts/7_cinder-085-released/
I would like to make a template for F# lib + XNA 4.0 + Xbox360 for visual studio 2012.
All I have is Visual Studio 2012 Express Edition for Web.
When I try to install the Visual Studio 2012 SDK, it stops after reporting that it requires Visual Studio 2012. The log seems to indicate it's looking for the Professional edition.
I'm not interested in buying a professional license for hobby work, and I am a bit surprised Microsoft would want to prevent hobbyists from extending their product.
I do have a professional license for Visual Studio 2010, though. If there's a way to make extensions for 2012 using 2010, that would work for me.
You can use VS2010 to develop extension compatible with VS2012.
All you have to do is to manually change vsixmanifest to make it work with newer version:
<SupportedProducts>
<VisualStudio Version="11.0">
Note however that Visual Studio Express does not support extensions, so you won't be able to install it in VS2012 Express anyway.