Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 998 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 998 Bytes

dprint-plugin-roslyn

CI

Wrapper around Roslyn in order to use it as a dprint plugin for C# and Visual Basic code formatting.

Install

  1. Install dprint
  2. Follow instructions at https://github.com/dprint/dprint-plugin-roslyn/releases/

Configuration

Specify a "roslyn" configuration property in dprint.json:

{
  // etc...
  "roslyn": {
    "csharp.indentBlock": false,
    "visualBasic.indentWidth": 2
  }
}

C# configuration uses the CSharpFormattingOptions (use "csharp.<property name goes here>": <value goes here> in the configuration file).

It does not seem like roslyn supports any VB specific configuration.