Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to use roslyn c# compiler with visual studio 2015?

I've a bit of confusion about roslyn.

What I have done: I've installed vs 2015 community edition and download in extensibilty > download compiler platform sdk.

So I created a simple console application: hello world example.

Well now I'm expect to choise the c# compiler between the vs2015 default one and roslyn..., but I've not found such option. So my first question is: how to select version of c# compiler?

Second I've downloaded master-roslyn and I build, then I found csc.exe, well the odd things is that if I lauch the exe I get c# compiler version 42.42.42.42. ???? Right?

Then I've follow some tutorials, but all purpose me: to load a source from text file or string vars and analyze or change syntax tree, then compile to var.

Well at this point I'm confused... So:

What is roslyn exactly? A meta compiler? This mean that I can change my code at runtime just like Reflection? Second: how can compile with vs2015 with default csc or choose roslyn? third: If I build a custom version of roslyn How can I compile my source using Vs2015 ? Which know if csc.exe is roslyn? No help or command line print the codename.

Thanks

like image 241
LXG Avatar asked Dec 07 '15 16:12

LXG


People also ask

What is the Roslyn compiler and how can I use it?

Roslyn is a collection of open-source compilers, code analysis and refactoring tools which work with C# and Visual Basic source codes. This set of compilers and tools can be used to create full-fledged compilers, including, first and foremost, source code analysis tools.

Does Visual Studio use Roslyn?

Visual Studio includes a core set of . NET Compiler Platform (Roslyn) analyzers.


1 Answers

So it looks like you've got a few questions:

What is Roslyn?

Roslyn is the new default compiler inside of Visual Studio 2015. If you're building and running applications within Visual Studio 2015, they're being compiled with the Roslyn compiler. You'll get to take advantage of all the new C# 6 features that are available only within the new compiler.

If you're using VS2015, Roslyn has replaced the old compiler entirely and as far as I know you can't use the old compiler within VS 2015.

Roslyn is also a platform that allows you to build programs that can modify, interpret and understand other programs. It's not really meant to let you write code that modifies itself (although that's probably possible to a degree).

The common use cases for Roslyn are:

  1. Building Code Analyzers that provide errors and warnings within Visual Studio.
  2. Building extensions for Visual Studio that understand source code.
  3. Building other tools that understand or run source code. Example: ScriptCS - Scripting with C# code.

In order to use Roslyn for these purposes, you pull down the Microsoft.CodeAnalysis packages from NuGet. You can use these packages to parse code, analyze syntax trees, analyze symbols or compile code and emit IL.

If you're interested in learning more about Roslyn, I've started a series called Learn Roslyn Now that you might be interested in.

Can I replace the compiler?

Yes you can, but I'm not convinced this is a great idea outside of testing changes you want to contribute back to Roslyn. You can pull down Roslyn from GitHub and follow these instructions to build and run Roslyn from within Visual Studio.

If you follow those instructions, you'll be able to run the Roslyn project with F5. It will start a new instance of Visual Studio that's using your customized compiler. This is how people outside of Microsoft will contribute features to the compiler from now on. (Previously you couldn't deploy your custom compiler to Visual Studio but they fixed that in Visual Studio Update 1).

like image 133
JoshVarty Avatar answered Oct 15 '22 00:10

JoshVarty