diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-04-05 16:46:08 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-04-05 16:46:08 +0800 |
| commit | 2eb16b22f8bb9e08fc690be09ab92b29f4911d3d (patch) | |
| tree | c6aeed3a9b27e157f09a6ff2abf7e4e44f176374 /.gitignore | |
| parent | 873d18c2e1c6d95e3734fa2e084c0f1809bd880d (diff) | |
| parent | de45aece667af6a25c1840d4cdfc27935fb0b490 (diff) | |
将 master 的项目合并到 feat/doc 中,我一定要添加这个超链接不可!
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 163 |
1 files changed, 84 insertions, 79 deletions
@@ -1,82 +1,87 @@ -# This .gitignore file should be placed at the root of your Unity project directory -# -# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore -# -/[Ll]ibrary/ -/[Tt]emp/ -/[Oo]bj/ -/[Bb]uild/ -/[Bb]uilds/ -/[Ll]ogs/ -/[Uu]ser[Ss]ettings/ - -# MemoryCaptures can get excessive in size. -# They also could contain extremely sensitive data -/[Mm]emoryCaptures/ - -# Recordings can get excessive in size -/[Rr]ecordings/ - -# Uncomment this line if you wish to ignore the asset store tools plugin -# /[Aa]ssets/AssetStoreTools* - -# Autogenerated Jetbrains Rider plugin -/[Aa]ssets/Plugins/Editor/JetBrains* - -# Visual Studio cache directory +# ============================================== +# C# Windows 窗体应用专用 .gitignore +# 适配:.NET Framework / .NET Core / .NET 5+ WinForms +# ============================================== + +# -------------------------- +# 1. 编译输出目录 (核心忽略) +# -------------------------- +[Bb]in/ +[Oo]bj/ +[Rr]elease/ +[Dd]ebug/ +x64/ +x86/ +publish/ +out/ + +# -------------------------- +# 2. NuGet 包与依赖 +# -------------------------- +**/packages/ +**/node_modules/ +*.nupkg +*.snupkg +.project +.nuget/ +!**/packages.config + +# -------------------------- +# 3. Visual Studio 临时文件 +# -------------------------- +*.suo +*.user +*.userosscache +*.sln.docstates +*.ide/ .vs/ - -# idea -.idea/ - -# vscode .vscode/ - -# Gradle cache directory -.gradle/ - -# Autogenerated VS/MD/Consulo solution and project files -ExportedObj/ -.consulo/ -*.csproj -*.unityproj -*.sln -*.slnx -*.suo +.idea/ +*.dotCover +*.OpenCover +*.testsettings +*.settings + +# -------------------------- +# 4. 日志、缓存、临时文件 +# -------------------------- +*.log *.tmp -*.user -*.userprefs -*.pidb -*.booproj -*.svd -*.pdb -*.mdb -*.opendb -*.VC.db - -# Unity3D generated meta files -*.pidb.meta -*.pdb.meta -*.mdb.meta - -# Unity3D generated file on crash reports -sysinfo.txt - -# Builds -*.apk -*.aab -*.unitypackage -*.app - -# Crashlytics generated file -crashlytics-build.properties - -# Packed Addressables -/[Aa]ssets/[Aa]ddressable[Aa]ssets[Dd]ata/*/*.bin* - -# Temporary auto-generated Android Assets -/[Aa]ssets/[Ss]treamingAssets/aa.meta -/[Aa]ssets/[Ss]treamingAssets/aa/* - -# Game resources -Export/ +*.temp +*.cache +*.pidc +*.vspscc +*.vssscc +*.gpState +*.ideprj +*.psess +*.svclog + +# -------------------------- +# 5. 生成的资源/设计器文件 +# -------------------------- +# 保留手动编写的代码,忽略自动生成的编译文件 +*.resources +*.Designer.cs~ +*.resx~ + +# -------------------------- +# 6. 系统/编辑器无关文件 +# -------------------------- +Thumbs.db +.DS_Store +desktop.ini +*.swp +*.swo +*~ + +# -------------------------- +# 7. 发布/安装包文件 +# -------------------------- +*.exe +*.dll +*.msi +*.cab +*.zip +*.rar +*.tar.gz
\ No newline at end of file |
