1. 添加全局代码抑制文件,修复Unity消息方法的静态分析误报 2. 新增Directory.Build.props配置,禁用构建时代码风格强制检查 3. 更新packages配置,添加Antigravity IDE包并升级Visual Scripting版本 4. 优化VSCode调试配置与开发环境设置 5. 添加EditorConfig统一代码格式规则
64 lines
1.7 KiB
JSON
64 lines
1.7 KiB
JSON
{
|
|
"dotnet.defaultSolution": "Kill.sln",
|
|
"dotnet.dotnetPath": "C:/Program Files/dotnet/dotnet.exe",
|
|
"dotrush.roslyn.dotnetSdkDirectory": "C:/Program Files/dotnet/sdk/8.0.113",
|
|
"dotrush.msbuildProperties": {
|
|
"DefineConstants": "UNITY_EDITOR"
|
|
},
|
|
"dotrush.roslyn.projectOrSolutionFiles": [
|
|
"D:/unity_project/Kill/Kill.sln"
|
|
],
|
|
"dotrush.roslyn.restoreProjectsBeforeLoading": false,
|
|
"files.exclude": {
|
|
"**/.DS_Store": true,
|
|
"**/.git": true,
|
|
"**/.gitmodules": true,
|
|
"**/*.booproj": true,
|
|
"**/*.pidb": true,
|
|
"**/*.suo": true,
|
|
"**/*.user": true,
|
|
"**/*.userprefs": true,
|
|
"**/*.unityproj": true,
|
|
"**/*.dll": true,
|
|
"**/*.exe": true,
|
|
"**/*.pdf": true,
|
|
"**/*.mid": true,
|
|
"**/*.midi": true,
|
|
"**/*.wav": true,
|
|
"**/*.gif": true,
|
|
"**/*.ico": true,
|
|
"**/*.jpg": true,
|
|
"**/*.jpeg": true,
|
|
"**/*.png": true,
|
|
"**/*.psd": true,
|
|
"**/*.tga": true,
|
|
"**/*.tif": true,
|
|
"**/*.tiff": true,
|
|
"**/*.3ds": true,
|
|
"**/*.3DS": true,
|
|
"**/*.fbx": true,
|
|
"**/*.FBX": true,
|
|
"**/*.lxo": true,
|
|
"**/*.LXO": true,
|
|
"**/*.ma": true,
|
|
"**/*.MA": true,
|
|
"**/*.obj": true,
|
|
"**/*.OBJ": true,
|
|
"**/*.asset": true,
|
|
"**/*.cubemap": true,
|
|
"**/*.flare": true,
|
|
"**/*.mat": true,
|
|
"**/*.meta": true,
|
|
"**/*.prefab": true,
|
|
"**/*.unity": true,
|
|
"build/": true,
|
|
"Build/": true,
|
|
"Library/": true,
|
|
"library/": true,
|
|
"obj/": true,
|
|
"Obj/": true,
|
|
"ProjectSettings/": true,
|
|
"temp/": true,
|
|
"Temp/": true
|
|
}
|
|
} |