From 4775b38c835626444ac67b94c69a86392b5162a7 Mon Sep 17 00:00:00 2001 From: jiang <821644@qq.com> Date: Wed, 15 Apr 2026 19:05:25 +0800 Subject: [PATCH] =?UTF-8?q?cleanup:=20=E5=88=A0=E9=99=A4=E5=BA=9F=E5=BC=83?= =?UTF-8?q?=E6=96=87=E4=BB=B6=E5=B9=B6=E6=9B=B4=E6=96=B0=20.gitignore?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 62 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e9d95b3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,62 @@ +# 编译产物 +bin/ +obj/ +*.dll +*.exe +*.pdb +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.vspscc +*.vssscc +*.suo +*.user +*.userosscache +*.sln.docstates + +# 测试结果 +TestResults/ +coverage.* + +# IDE 文件 +.vs/ +.vscode/ +*.suo +*.user + +# 临时文件 +*.tmp +*.temp +*.log +*.cache +*.bak +*.swp + +# NuGet +*.nupkg +*.snupkg +project.lock.json +project.fragment.lock.json + +# 操作系统 +.DS_Store +Thumbs.db +*.code-workspace + +# 文件编码冲突 +*.orig +*~ + +# 项目特定 +App_Data/ +publish/ +*.deps.json +*.runtimeconfig.json +!appsettings.json +!appsettings.*.json + +# 废弃文件 +apitest/ +WeatherForecast.cs \ No newline at end of file