79 lines
1.2 KiB
Plaintext
79 lines
1.2 KiB
Plaintext
# ==============================================
|
|
# Visual Studio / .NET 通用忽略规则
|
|
# ==============================================
|
|
[Rr]elease/
|
|
[Dd]ebug/
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
.vs/
|
|
*.log
|
|
*.cache
|
|
*.baml
|
|
*.g.cs
|
|
*.g.i.cs
|
|
*.tlb
|
|
*.tli
|
|
*.tmp
|
|
*.tmp_proj
|
|
*.log
|
|
*.vspscc
|
|
*.vssscc
|
|
.builds
|
|
*.pidb
|
|
*.svclog
|
|
*.scc
|
|
|
|
# 用户设置文件
|
|
*.suo
|
|
*.user
|
|
*.userosscache
|
|
*.userprefs
|
|
|
|
# ==============================================
|
|
# WPF / XAML 相关临时文件
|
|
# ==============================================
|
|
# XAML 编译生成的临时文件
|
|
*.baml
|
|
*_MarkupCompile.cache
|
|
|
|
# ==============================================
|
|
# NuGet / 包管理
|
|
# ==============================================
|
|
*.nupkg
|
|
# The packages folder can be ignored unless you're using a
|
|
# version supporting restoring packages (NuGet 2.7+).
|
|
packages/
|
|
|
|
# ==============================================
|
|
# 其他临时文件
|
|
# ==============================================
|
|
# 操作系统文件
|
|
Thumbs.db
|
|
.DS_Store
|
|
|
|
*.bin
|
|
|
|
# 忽略所有 .bin 文件
|
|
*.bin
|
|
|
|
# 忽略编译目录
|
|
[Bb]in/
|
|
[Oo]bj/
|
|
[Dd]ebug/
|
|
[Rr]elease/
|
|
|
|
# 忽略VS临时文件
|
|
.vs/
|
|
*.suo
|
|
*.user
|
|
*.cache
|
|
*.baml
|
|
*.g.cs
|
|
*.g.i.cs
|
|
*.log
|
|
Thumbs.db
|
|
.DS_Store
|
|
# 忽略编译生成的 obj 目录(核心!)
|
|
obj/
|
|
*.g.cs
|
|
*.g.i.cs |