-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
102 lines (87 loc) · 1.34 KB
/
Copy path.gitignore
File metadata and controls
102 lines (87 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
## .NET / Visual Studio / C# 项目忽略规则
# ====== Visual Studio ======
.vs/
*.suo
*.user
*.userosscache
*.sln.docstates
*.userprefs
# ====== 编译输出 ======
bin/
obj/
*.exe
*.dll
*.pdb
*.ilk
*.iobj
*.ipdb
# 但保留非编译生成的 DLL(如果有第三方依赖放在项目内)
!**/packages/**/lib/*.dll
# ====== NuGet ======
*.nupkg
**/[Pp]ackages/*
# 例外:允许提交 packages 目录下的 repos.config / .targets
!**/[Pp]ackages/repositories.config
!**/[Pp]ackages/*.targets
# ====== 发布 / 部署 ======
*.pubxml.user
*.publishproj
[Pp]ublish/
*.azurePubxml
# ====== 测试结果 ======
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
*.VisualState.xml
TestResult.xml
*.coverage
*.coveragexml
# ====== 代码覆盖率 / 分析 ======
*.dotCover
*.ncrunch*
*.ncrunchsolution
*.vsps
*.vspx
*.psess
*.vsmdi
# ====== JetBrains Rider ======
.idea/
*.sln.iml
# ====== Visual Studio Code ======
.vscode/
*.code-workspace
# ====== ReSharper ======
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# ====== 备份文件 ======
*.backup
*.bak
*.orig
*.tmp
*~
~$*
# ====== 操作系统 ======
# Windows
Thumbs.db
Desktop.ini
[Dd]esktop.ini
$RECYCLE.BIN/
# macOS
.DS_Store
.AppleDouble
.LSOverride
._*
# Linux
.directory
.Trash-*
# ====== 日志 ======
*.log
logs/
# ====== 杂项 ======
*.cache
*.dbmdl
*.jfm
*.pfx
*.snk
Generated_Code/
*.nupkg.sha512