Official C# support for Visual Studio Code (powered by OmniSharp)
Перейти к файлу
Joshua Brooks e54544ae67 Fix typescript problems 2020-05-21 22:52:26 -04:00
.github/workflows Update artifact name 2020-02-25 13:14:38 -05:00
.travis Add log folding in Travis CI 2017-11-17 00:34:43 -08:00
.vscode Upgrade OmniSharp to 1.35.2 2020-05-20 22:16:41 -07:00
RuntimeLicenses Mark the C# extension as non-preview (#2220) 2018-04-27 13:03:36 -07:00
images Add C# icon to package 2016-03-10 15:38:14 -08:00
omnisharp Update omnisharp to latenew merge 2020-05-21 15:38:22 -04:00
scripts Fix RemoteProcessPicker (#1373) 2017-04-11 10:45:36 -07:00
snippets MOD Use filename instead of ClassName 2019-10-31 14:47:55 +01:00
src Fix typescript problems 2020-05-21 22:52:26 -04:00
tasks Format source to make it consistent 2020-04-20 14:58:52 -07:00
test Address feedback from peer review 2020-05-21 14:54:58 -07:00
themes Fix string puctuation color 2020-05-21 17:08:34 -07:00
typings Update to the released semantic token apis. 2020-05-11 12:51:46 -07:00
.editorconfig Update .editorconfig JSON rules (#2063) 2018-02-27 09:28:31 -08:00
.gitignore Merge remote-tracking branch 'main/master' 2020-05-21 14:04:57 -04:00
.travis.yml Add integration test for SemanticTokensProvider 2020-05-11 13:13:22 -07:00
CHANGELOG.md Bump version to 1.22.0 2020-05-21 16:33:27 -07:00
ISSUE_TEMPLATE Add OmniSharp log to Issue template 2020-05-15 09:08:39 -07:00
LICENSE.txt Updated license to include .net foundation 2020-03-29 14:02:44 -04:00
README.md Bump version to 1.22.0 2020-05-21 16:33:27 -07:00
ThirdPartyNotices.txt Remove third-party notice for old grammar 2017-01-10 15:47:26 -08:00
codecov.yml Eliminate Thennable<any> (#2163) 2018-04-09 11:16:00 -07:00
debugger-launchjson.md Update debugger-launchjson.md to use COMPlus_ReadyToRun (#3442) 2019-12-05 14:46:10 -08:00
debugger.md Update debugger.md (#3609) 2020-02-26 13:41:20 -08:00
gulpfile.ts Format source to make it consistent 2020-04-20 14:58:52 -07:00
mocha.opts Verify vsix size before release (#2144) 2018-03-28 18:14:04 -07:00
offline.vscodeignore Delete the razor folder before trying to create offline package 2019-02-08 11:49:21 -08:00
package-lock.json Fix typescript problems 2020-05-21 22:52:26 -04:00
package.json Merge remote-tracking branch 'main/master' 2020-05-21 22:45:59 -04:00
release.vscodeignore Delete the razor folder before trying to create offline package 2019-02-08 11:49:21 -08:00
test-plan.md Apply suggestions from code review 2020-05-21 16:01:08 -07:00
tsconfig.json Fix for invalid json at tsconfig.json 2019-12-01 18:38:26 +02:00
tslint.json Update OmniSharp to 1.34.8 2019-11-21 15:34:04 -08:00
wallaby.js Add mocha+wallaby tests (#2091) 2018-03-05 16:08:00 -08:00
webpack.config.js Set dirname to false 2019-03-21 16:15:01 -07:00

README.md

C# for Visual Studio Code (powered by OmniSharp)

Master Release
Master Build Status Release Build Status

Wallaby.js

Welcome to the C# extension for Visual Studio Code! This extension provides the following features inside VS Code:

  • Lightweight development tools for .NET Core.
  • Great C# editing support, including Syntax Highlighting, IntelliSense, Go to Definition, Find All References, etc.
  • Debugging support for .NET Core (CoreCLR). NOTE: Mono debugging is not supported. Desktop CLR debugging has limited support.
  • Support for project.json and csproj projects on Windows, macOS and Linux.

The C# extension is powered by OmniSharp.

Get Started Writing C# in VS Code

What's new in 1.22.0

What's new in 1.21.18

What's new in 1.21.17

  • Updated Razor support (PR:#3696)
  • Razor support for <text> tag completions.
  • Ability to restart the Razor Language Server to activate changes to the razor.trace level.
  • Bug fixes and performance improvements.
  • Support for <RunAnalyzers /> and <RunAnalyzersDuringLiveAnalysis /> (PR: omnisharp-roslyn/#1739)
  • Add typeparam documentation comments to text description (#3516, PR: omnisharp-roslyn/#1749)
  • Tag #region blocks appropriately in the block structure service (#2621, PR: omnisharp-roslyn/#1748)

Emmet support in Razor files

To enable emmet support, add the following to your settings.json:

"emmet.includeLanguages": {
    "aspnetcorerazor": "html"
}

Semantic Highlighting

The C# semantic highlighting support is in preview. To enable, set editor.semanticHighlighting.enabled and csharp.semanticHighlighting.enabled to true in your settings. Semantic highlighting is only provided for code files that are part of the active project.

To really see the difference, try the new Visual Studio 2019 Light and Dark themes with semantic colors that closely match Visual Studio 2019.

Supported Operating Systems for Debugging

  • Currently, the C# debugger officially supports the following operating systems:

    • X64 operating systems:
      • Windows 7 SP1 and newer
      • macOS 10.12 (Sierra) and newer
      • Linux: see .NET Core documentation for the list of supported distributions. Note that other Linux distributions will likely work as well as long as they include glibc and OpenSSL.
    • ARM operating systems:
      • Linux is supported as a remote debugging target

Found a Bug?

To file a new issue to include all the related config information directly from vscode by entering the command pallette with Ctrl+Shift+P (Cmd+Shift+P on macOS) and running CSharp: Report an issue command. This will open a browser window with all the necessary information related to the installed extensions, dotnet version, mono version, etc. Enter all the remaining information and hit submit. More information can be found on the wiki.

Alternatively you could visit https://github.com/OmniSharp/omnisharp-vscode/issues and file a new one.

Development

First install:

  • Node.js (8.11.1 or later)
  • Npm (5.6.0 or later)

To run and develop do the following:

  • Run npm i
  • Run npm run compile
  • Open in Visual Studio Code (code .)
  • Optional: run npm run watch, make code changes
  • Press F5 to debug

To test do the following: npm run test or F5 in VS Code with the "Launch Tests" debug configuration.

License

Copyright © .NET Foundation, and contributors.

The Microsoft C# extension is subject to these license terms. The source code to this extension is available on https://github.com/OmniSharp/omnisharp-vscode and licensed under the MIT license.

Code of Conduct

This project has adopted the code of conduct defined by the Contributor Covenant to clarify expected behavior in our community. For more information see the .NET Foundation Code of Conduct.

Contribution License Agreement

By signing the CLA, the community is free to use your contribution to .NET Foundation projects.

.NET Foundation

This project is supported by the .NET Foundation.