1
Where can I get a Assembly
(.dll
) containing the CodeDom
with the ombudsman of .NET Compiler
"Roslyn
"? I tried to download a version here and it is with many bugs, including poor performance and problems in the execution of Assembly
.
1
Where can I get a Assembly
(.dll
) containing the CodeDom
with the ombudsman of .NET Compiler
"Roslyn
"? I tried to download a version here and it is with many bugs, including poor performance and problems in the execution of Assembly
.
1
I’m using the package that is in Nuget without problems, remembering that it is still a prerelease. It can follow the development on Github.
If you’re using Visual Studio, open nuget command prompt and run:
Install-Package Microsoft.CodeAnalysis -Pre
If you want to download directly into the folder, download the http://nuget.org/nuget.exe and run (assemblies will be downloaded to the same folder as nuget.exe is running):
nuget.exe Install Microsoft.CodeAnalysis -Pre
This is a package of all the following assemblies, you can download them separately and have part of the 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)
I don’t see her being referred to in the Codedom...
Browser other questions tagged .net .net-compiler-platform
You are not signed in. Login or sign up in order to post.
See if this is what you’re looking for: Codedom Providers for . NET Compiler Platform ("Roslyn".
– stderr