1
0
mirror of https://github.com/ppy/osu.git synced 2024-05-14 18:10:23 +08:00

Add C# extension to recommended VS Code extensions

The [official C# extension] is maintained by Microsoft and enables
IDE-like support for C# in VS Code.

If a user opens this repository in VS Code, they will be prompted to
install it if they haven't already installed it. After installation, the
extension will also prompt the user to install the .NET SDK if it's not
found.

[official C# extension]: https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp
This commit is contained in:
mcpower 2022-03-22 20:30:54 +11:00
parent 056e568ffb
commit 5631726164

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"ms-dotnettools.csharp"
]
}