mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
20 lines
677 B
JSON
20 lines
677 B
JSON
{
|
|
// This prevents Omnisharp from prematurely creating obj and bin directories.
|
|
// Change this to true after changing the name of the csproj file and running Restore Project.
|
|
"omnisharp.autoStart": true,
|
|
|
|
// This just circumvents annoying default behavior with the C# extension...
|
|
// If you really like Code Lens, feel free to change this.
|
|
"csharp.referencesCodeLens.enabled": false,
|
|
|
|
"files.exclude": {
|
|
"obj": true,
|
|
"bin": true,
|
|
"CompiledContent/bin": true,
|
|
"CompiledContent/obj": true,
|
|
"CompiledContent/.mgstats": true,
|
|
"*.csproj.user": true,
|
|
"*.csproj": true,
|
|
"*.sln": true
|
|
}
|
|
} |