You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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)