FNA-VSCode-Template/project_name/.vscode/settings.json
Mike 5e618eca79 easier setup process
added MG Pipeline tool support
2019-02-10 17:48:25 -08:00

17 lines
598 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": false,
// 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
}
}