Skip to content

v1.34.10

Compare
Choose a tag to compare
@filipw filipw released this 27 Jan 07:34
d9a33d8
  • Update to Roslyn 3.5.0-beta3-20058-03 (PR: #1680)
  • Fixed a bug where completion items didn't decode symbols corectly (impacted, for example, object initializer completion quality) (omnisharp-vscode#3465, PR: #1670)
  • Updated to MsBuild 16.4.0 on Linux/MacOS (PR:#1669)
  • Added support for implement type options - it is now possible to define whether code-fix/refactoring generated properties should be auto- or throwing-properties and at which place in the class should newly generated members be inserted. They can be set via OmniSharp configuration, such as omnisharp.json file. (PR: #1672)
    {
        "ImplementTypeOptions": {
            "PropertyGenerationBehavior": "PreferAutoProperties", // or "PreferThrowingProperties" which is the default
            "InsertionBehavior": "AtTheEnd" // or "WithOtherMembersOfTheSameKind" which is default
        }
    }
  • Added support for organizing usings on format. This can be set via OmniSharp configuration, such as omnisharp.json file. (PR: #1686)
    {
        "FormattingOptions": {
            "OrganizeImports": true
        }
    }