Skip to content

Latest commit

 

History

History
54 lines (35 loc) · 2.48 KB

README.md

File metadata and controls

54 lines (35 loc) · 2.48 KB

.NET Compiler Platform ("Roslyn") Analyzers

This repository contains a number of Roslyn diagnostic analyzers initially developed to help flesh out the design and implementation of the static analysis APIs.

Currently there are only a few projects here. Over time the collection will grow as more are migrated from the dotnet/roslyn repository.

Debug Release
Build Status Build Status

Join the chat at https://gitter.im/dotnet/roslyn

Projects

AsyncPackage

Created by summer 2014 interns Chardai Page, Kendra Havens, and Vivian Morgowicz

The AsyncPackage analyzer enforces good practices when writing code that makes use of C#'s async and await language features.

MetaCompilation

Created by summer 2015 interns Zoë Petard, Jessica Petty, and Daniel King

The MetaCompilation Analyzer is an analyzer that functions as a tutorial to teach users how to write an analyzer. It uses diagnostics and code fixes to guide the user through the various steps required to create a simple analyzer. It is designed for a novice analyzer programmer with some previous programming experience.

Microsoft.AnalyzerPowerPack

General language rules implemented as analyzers using the .NET Compiler Platform ("Roslyn").

Microsoft.CodeAnalysis.Analyzers

Provides guidelines for using .NET Compiler Platform ("Roslyn") APIs.

Getting Started

  1. Clone the repository
  2. Install NuGet packages: powershell -executionpolicy bypass src\.nuget\NuGetRestore.ps1
  3. Build: msbuild src\Analyzers.sln

Submitting Pull Requests

Prior to submitting a pull request, ensure the build and all tests pass using BuildAndTest.proj:

msbuild BuildAndTest.proj