By tag: roslyn
0
kicks
Getting started with Roslyn
An overview of the Roslyn compiler as a service CTP from Microsoft using VS2012
0
kicks
Removing excess lambda expressions with a Roslyn Visual Studio plugin
A roslyn plugin that looks for duplicated lambda expressions;
Once detected, breaks them out into a separate function;
Names the function something based on what the function is doing
0
kicks
Automated code quality testing using Roslyn
Claus has written a nice piece on how you can use Roslyn for analyzing your code quality (static code analysis) and run it like any other automated test. Pretty awesome.
0
kicks
Compiler as service for C#: Roslyn CTP available
Microsoft's ongoing project to create a compiler-as-a-service for the C# language has reached a new milestone, now that Eric Lippert has announced a stable CTP release of the product. Roslyn exposes the lexing, parsing, and compiling functionality for the C# (CLR) language at runtime.
Roslyn is a...