Files
zed/docs/src/languages/csharp.md
Marshall Bowers 431727fdd7 csharp: Extract to zed-extensions/csharp repository (#26166)
This PR extracts the C# extension to the
[zed-extensions/csharp](https://github.com/zed-extensions/csharp)
repository.

Release Notes:

- N/A
2025-03-05 22:23:49 +00:00

855 B

C#

Note language name is "CSharp" for settings not "C#'

C# support is available through the C# extension.

Configuration

The OmniSharp binary can be configured in a Zed settings file with:

{
  "lsp": {
    "omnisharp": {
      "binary": {
        "path": "/path/to/OmniSharp",
        "arguments": ["optional", "additional", "args", "-lsp"]
      }
    }
  }
}

If you want to disable Zed looking for a omnisharp binary, you can set ignore_system_version to true:

{
  "lsp": {
    "omnisharp": {
      "binary": {
        "ignore_system_version": true
      }
    }
  }
}