I'm using the package that is in Nuget without any problems, remembering that it's still a prerelease. You can follow development on GitHub .
If you are using Visual Studio, open the nuget command prompt and run:
Install-Package Microsoft.CodeAnalysis -Pre
If you want to download directly into the folder, download the nuget at link and run (the assemblies will be downloaded to the same folder as the nuget.exe is running):
nuget.exe Install Microsoft.CodeAnalysis -Pre
This is a bundle of all the following assemblies, you can download them separately and have some functionality:
-
"Microsoft.CodeAnalysis.CSharp.Workspaces" (C # compiler + services)
-
"Microsoft.CodeAnalysis.VisualBasic.Workspaces" (VB compiler + services)
-
"Microsoft.CodeAnalysis.Compilers" (both compilers)
-
"Microsoft.CodeAnalysis.CSharp" (C # compiler only)
-
"Microsoft.CodeAnalysis.VisualBasic (VB compiler only)