-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
270 lines (217 loc) Β· 3.51 KB
/
.gitignore
File metadata and controls
270 lines (217 loc) Β· 3.51 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# Escludi tutti gli .exe
*.exe
.claude/
Installer/Output/
# Escludi la sorgente CPUSetSetter upstream
/CPUSetSetter-main/
# Escludi Markdown tranne il README principale
*.md
!README.md
!LICENSE.md
# Escludi directory di build comuni
/bin/
/obj/
/publish/
/publish_*/
# .NET Core / .NET 5+ specifici
*.deps.json
*.runtimeconfig.json
*.dll.config
project.lock.json
project.fragment.lock.json
artifacts/
# Visual Studio specifici
.vs/
*.user
*.suo
*.userosscache
*.sln.docstates
*.vcxproj.filters
*.vcxproj.user
# Rider / JetBrains
.idea/
*.sln.iml
# Resharper
_ReSharper*/
*.[Rr]e[Ss]harper
*.DotSettings.user
# Build results
[Dd]ebug/
[Dd]ebugPublic/
[Rr]elease/
[Rr]eleases/
x64/
x86/
[Ww][Ii][Nn]32/
[Aa][Rr][Mm]/
[Aa][Rr][Mm]64/
bld/
[Bb]in/
[Oo]bj/
[Ll]og/
[Ll]ogs/
# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*
# NUnit
*.VisualState.xml
TestResult.xml
nunit-*.xml
# Coverage reports
coverage*.json
coverage*.xml
coverage*.info
*.coverage
*.coveragexml
# NuGet
*.nupkg
*.snupkg
.nuget/
packages/
!packages/build/
!packages/repositories.config
# Package manager files
paket-files/
.paket/paket.exe
.fake/
# Windows specifici
Thumbs.db
ehthumbs.db
Desktop.ini
$RECYCLE.BIN/
*.cab
*.msi
*.msix
*.msm
*.msp
*.lnk
# Temporary files
*.tmp
*.temp
*~
*.swp
*.swo
# Log files
*.log
logs/
Logs/
# Configuration files con dati sensibili
appsettings.local.json
appsettings.*.local.json
secrets.json
*.secrets.json
# ThreadPilot specifici
# Dati utente e configurazioni locali
/Configuration/UserSettings.json
/Configuration/ProcessProfiles.json
/Data/
/AppData/
%AppData%/ThreadPilot/
# File di backup automatici
*.bak
*.backup
*_backup.*
*_old.*
# Crash dumps e diagnostici
*.dmp
*.mdmp
crashdumps/
# Performance profiling
*.psess
*.vsp
*.vspx
*.sap
# Installer files
*.msi
*.cab
*.msm
*.msp
*.exe.config
# ClickOnce directory
publish/
# Publish Web Output
*.[Pp]ublish.xml
*.azurePubxml
*.pubxml
*.publishproj
# Microsoft Azure Web App publish settings
PublishScripts/
# Node.js (se usato per build tools)
node_modules/
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Python (se usato per script di build)
__pycache__/
*.py[cod]
*$py.class
# macOS (per sviluppatori cross-platform)
.DS_Store
.AppleDouble
.LSOverride
# Linux
*~
.fuse_hidden*
.directory
.Trash-*
# Backup files da editor
*.orig
*.rej
# JetBrains Rider
.idea/
*.sln.iml
# CodeRush personal settings
.cr/personal
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config
# Tabs Studio
*.tss
# Telerik's JustMock configuration file
*.jmconfig
# BizTalk build output
*.btp.cs
*.btm.cs
*.odx.cs
*.xsd.cs
# OpenCover UI analysis results
OpenCover/
# Azure Stream Analytics local run output
ASALocalRun/
# MSBuild Binary and Structured Log
*.binlog
# NVidia Nsight GPU debugger configuration file
*.nvuser
# MFractors (Xamarin productivity tool) working folder
.mfractor/
# Local History for Visual Studio
.localhistory/
# BeatPulse healthcheck temp database
healthchecksdb
# Backup folder for Package Reference Convert tool in Visual Studio 2017
MigrationBackup/
# Ionide (cross platform F# VS Code tools) working folder
.ionide/
# Fody - auto-generated XML schema
FodyWeavers.xsd
# VS Code
.vscode/
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Local History for Visual Studio Code
.history/
# Windows Installer files from build outputs
*.msi
*.msm
*.msp
# JetBrains Rider
*.sln.iml
# Continue.dev (AI coding assistant)
.continue/nul
nul