VSCode用户设置
Posted For The Glory
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了VSCode用户设置相关的知识,希望对你有一定的参考价值。
// 将设置放入此文件中以覆盖默认设置 { //-------- 搜索配置 -------- "search.exclude": { "**/node_modules": true, "**/bower_components": true, "**/.git": true, "**/.DS_Store": true, "**/*.meta": true, "**/*.*.meta": true, "**/*.unity": true, "**/*.unityproj": true, "**/*.mat": true, "**/*.fbx": true, "**/*.FBX": true, "**/*.tga": true, "**/*.png": true, "**/*.jpg": true, "**/*.dds": true, "**/*.cubemap": true, "**/**.prefab": true, "**/Library": true, "**/ProjectSettings": true, "**/Temp": true, "**/*.exe": true, "**/*.dll": true, "**/*.vs": true }, // 配置 glob 模式以排除文件和文件夹。 "files.exclude": { "**/.git": true, "**/.DS_Store": true, "**/*.meta": true, "**/*.*.meta": true, "**/*.unity": true, "**/*.unityproj": true, "**/*.mat": true, "**/*.fbx": true, "**/*.FBX": true, "**/*.tga": true, "**/*.png": true, "**/*.jpg": true, "**/*.dds": true, "**/*.cubemap": true, "**/**.prefab": true, "**/Library": true, "**/ProjectSettings": true, "**/Temp": true, "**/*.exe": true, "**/*.dll": true, "**/*.vs": true }, "csharp.suppressDotnetInstallWarning": true }
以上是关于VSCode用户设置的主要内容,如果未能解决你的问题,请参考以下文章