commit f585aebad4372647adf2fec498bb48b5cf6296a8 Author: 12345qiupeng Date: Mon Mar 17 11:56:44 2025 +0800 feat: add .gitignore to exclude Visual Studio and build artifacts diff --git a/BenzObstacleDetect/.gitignore b/BenzObstacleDetect/.gitignore new file mode 100644 index 0000000..f65be8c --- /dev/null +++ b/BenzObstacleDetect/.gitignore @@ -0,0 +1,34 @@ +## 忽略 Visual Studio 临时文件、用户设置以及编译输出目录 + +# Visual Studio 相关文件 +.vs/ +*.suo +*.user +*.userosscache +*.sln.docstates + +# MonoDevelop/Xamarin Studio 用户设置 +*.userprefs + +# 编译生成的目录 +[Bb]in/ +[Oo]bj/ +build/ +bld/ + +# 常见的编译输出文件夹 +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ + +# 日志文件 +*.log + +# Visual Studio Code 工作区设置 +.vscode/ + +# 其他临时文件 +*.tmp