From 2ef0b27406c054db7c6e37cf6faa43624a588da0 Mon Sep 17 00:00:00 2001 From: chenjiangqun Date: Mon, 20 Apr 2026 13:56:20 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=BF=BD=E8=A7=86=E9=A1=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 67 ++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 42 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 14b117c..076e3c7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,30 +1,47 @@ -# ---> C++ -# Compiled Object files -*.slo -*.lo -*.o +# ============ 编译输出 ============ +[Dd]ebug/ +[Rr]elease/ +x64/ +x86/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +[Bb]uild/ + +# ============ VS 用户配置 / 缓存 ============ +.vs/ +*.suo +*.user +*.userosscache +*.sln.docstates + +# ============ C++ 编译中间文件 ============ *.obj - -# Precompiled Headers -*.gch *.pch - -# Compiled Dynamic libraries -*.so -*.dylib -*.dll - -# Fortran module files -*.mod - -# Compiled Static libraries -*.lai -*.la -*.a +*.pdb +*.ilk +*.exp +*.idb *.lib - -# Executables +*.dll *.exe -*.out -*.app +*.log +*.tlog +*.lastbuildstate +*.iobj +*.ipdb +# ============ NuGet / 包管理 ============ +packages/ +*.nupkg + +# ============ 其他缓存 ============ +ipch/ +*.aps +*.ncb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb +TestResults/ \ No newline at end of file