.NET Compiler Platform

.NET Compiler Platform, better known by its codename "Roslyn", is a set of open-source compilers and code analysis APIs for C# and Visual Basic .NET languages from Microsoft.[1]

The project notably includes self-hosting versions of the C# and VB.NET compilers – compilers written in the languages themselves. The compilers are available via the traditional command-line programs but also as APIs available natively from within .NET code. Roslyn exposes modules for syntactic (lexical) analysis of code, semantic analysis, dynamic compilation to CIL, and code emission.[2]

Name

Even though the final and official name of the component is ".NET Compiler Platform", it is widely referred to by its code name, "Roslyn".

The code name "Roslyn" was first written by Eric Lippert (a former Microsoft worker[3]) in a post[4] that he published to hire developers for a new project. He first said that the origin of the name was because of Roslyn, Washington, but later in the post he speaks ironically about the northern exposure of its office. The city of Roslyn was one of the places where this television series was filmed.

Features

The most notable primary features of Roslyn include:

History

Microsoft made a community technology preview (CTP) available for public download in October 2011. It installed as an extension to Visual Studio 2010 SP1.[5]

The CTP was updated on September 2012[6] to include many updates to the Roslyn APIs introduced in the June 2012 and October 2011 CTPs, including breaking changes.[7] While the June 2012 CTP API is complete for the compilers, not all features were implemented for the C# and VB.NET languages.[8]

At the Build 2014 conference in San Francisco April 2014, Microsoft made the "Roslyn" project open-source and released a preview of the language integration for Visual Studio 2013. As of April 3, 2014, Roslyn is under the Apache License 2.0.[1] The project was effectively transferred under the stewardship of the newly founded .NET Foundation.[9] At the same conference, Xamarin announced that they are working on integrating the new compilers and tools in Xamarin Studio.

The compilers were not feature-complete in this release. Each of the compilers contains features that are planned for the coming language versions (C# 6 and Visual Basic.NET 14). The APIs are also available through the NuGet package manager.

Roslyn's first RTM release was with Visual Studio 2015.[10] Roslyn currently only supports VB and C#, and the compilers were written in their respective languages.[11]

In January 2015, Microsoft moved the Roslyn source code from CodePlex to GitHub.[12]

Architecture

Traditionally compilers have been a black box for application developers. With increasing complexity and demands for source code analysis in modern integrated development environments, however, compilers need to expose application programming interfaces (APIs) that will help developers to directly perform phases of compilation such as lexical and syntactic structure analysis of source code. Roslyn was designed with that intention from the beginning. This reduces the barrier in developing tools specifically designed for source code analysis. APIs of Roslyn are of three types, namely feature APIs, work-space APIs and compiler APIs. Feature APIs allow source code tool developers to do code refactoring and fixes. Work-space APIs allow plugin developers to perform actions specifically required in integrated development environments (IDEs) like Visual Studio such as finding references of a variable or code formatting. Compiler APIs allow even more sophisticated analysis of source code, by exposing direct calls to perform syntax tree and binding flow analysis.[13] Using an open-source implementation of Common Language Infrastructure (CLI) such as .NET Core, Roslyn will be able to compile in a platform agnostic manner capable of running CLI code in Linux, OS X, and Windows.

References

External links

This article is issued from Wikipedia - version of the 10/12/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.