-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
139 lines (115 loc) · 2.17 KB
/
.gitignore
File metadata and controls
139 lines (115 loc) · 2.17 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
############################################
# 1) C# / .NET
############################################
# Build folders
[Bb]in/
[Oo]bj/
[Ll]og/
x64/
x86/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
# User-specific files
*.rsuser
*.suo
*.user
*.userosscache
*.sln.docstates
# IDE/tool caches
*.cache
*.pdb
*.mdb
*.opendb
*.VC.db
*.VC.VC.opendb
# Test results
[Tt]est[Rr]esult*/
[Bb]enchmark[Dd]ot[Nn]et.Artifacts/
# NuGet
*.nupkg
*.snupkg
**/[Pp]ackages/*
!**/[Pp]ackages/build/
!**/[Pp]ackages/repositories.config
.nuget/
*.nuget.props
*.nuget.targets
# Publish
publish/
artifacts/
############################################
# 2) Visual Studio 2026 (通用 VS 忽略项)
############################################
# VS working folder
.vs/
# Diagnostic / profiling
*.psess
*.vsp
*.vspx
*.sap
# Generated files
Generated\ Files/
_ReSharper*/
*.DotSettings.user
############################################
# 3) Visual Studio 插件 (VSIX) 项目
############################################
# VSIX package outputs
*.vsix
*.vsixupload
*.vsixmanifest.backup
# Common extension build output folders
VSIXOutput/
ExtensionPackage/
AppPackages/
# Keep source manifests/configs tracked:
# - source.extension.vsixmanifest
# - .csproj / .sln / .targets etc.
############################################
# 4) PowerShell
############################################
# Editor temp/backup
*.ps1~
*.psm1~
*.psd1~
*~
# Runtime / logs / serialized objects
*.clixml
*.psscache
*.ps1xml.cache
*.PowerShellEditorServices/
PowerShellEditorServices.json
*.transcript
*.log
# Pester / test / coverage outputs (常见)
coverage.xml
testResults.xml
TestResults.xml
############################################
# 5) VSC (VS Code) 插件项目
############################################
# VS Code local settings (按团队需要可放开部分白名单)
.vscode/*
!.vscode/extensions.json
!.vscode/launch.json
!.vscode/tasks.json
!.vscode/settings.json
# VS Code extension test host/cache
.vscode-test/
.vscode-test-web/
# Node/TS build artifacts (VS Code 插件常见)
node_modules/
out/
dist/
build/
.webpack/
coverage/
*.tsbuildinfo
# Packaging outputs
*.vsix
*.tgz
# Logs
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*