mirror of
https://github.com/prime31/FNA-VSCode-Template.git
synced 2025-10-31 21:50:44 +07:00
30 lines
1.1 KiB
JSON
30 lines
1.1 KiB
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": {
|
|
"**/.[^v]*": true, // hide any files that start with a '.' but keep the .vscode folder
|
|
".vs": true, // Visual Studio settings
|
|
"getFNA.sh": true,
|
|
"imgui.ini": true,
|
|
"MonoGameContent.targets": true,
|
|
"**/obj": true,
|
|
"**/bin": true,
|
|
".gitignore": true,
|
|
".gitmodules": true,
|
|
"README.md": true,
|
|
"fnalibs": true,
|
|
"project_name/CompiledContent/.mgstats": true,
|
|
"**/*.csproj*": true,
|
|
"**/*.sln": true,
|
|
"FNA/[^src]*": true, // hide everything but the src folder
|
|
"Nez/{[^DN]*}": true, // hide everything except what begins with D or N
|
|
"Nez/Nez.*.*": true, // hide the files in the root of the repo
|
|
}
|
|
}
|