2

I'm getting a "Setup Failed" "A compatible version of Visual Studio was not detected... You must have Visual Studio 2012..."

Is it incompatible with VS2013? Or perhaps with the Community Edition? (I have VS2013 Community Edition) I don't see anything about that in the System Requirements.

ispiro
  • 26,556
  • 38
  • 136
  • 291

1 Answers1

4

Well, if you look a little further:

Required Pre-installed Products:

  • Visual Studio 2012
  • Visual Studio 2012 SDK

Also, from the Github project:

Roslyn is no longer available for Visual Studio 2013

Assuming you have a version of Visual Studio 2015 available, the easiest way to get Rosyln is probably the NuGet package:

Install-Package Microsoft.CodeAnalysis -Pre
Tieson T.
  • 20,774
  • 6
  • 77
  • 92
  • That seems like a contradiction (assuming VS2013 is no less than VS2012). And why would the download link in my question still be active? (I know this is not a question on your answer, rather on MS...:) – ispiro Jul 19 '15 at 20:52
  • One last point, if you do want to use it you need to use [Visual Studio 2015 Community Edition](https://www.visualstudio.com/en-us/downloads/visual-studio-2015-downloads-vs.aspx) (you said what you can't use but never listed what you could use) – Scott Chamberlain Jul 19 '15 at 20:52
  • @ispiro I was talking to Tieson, not you. At the time of the comment he did not have any info in the answer about how to get it to work in VS2015. – Scott Chamberlain Jul 19 '15 at 20:57
  • @ScottChamberlain Sorry. I misunderstood. Thanks for the help! – ispiro Jul 19 '15 at 20:58