Skip to content

Commit 899dc17

Browse files
author
Lazo
authored
Update .gitignore
1 parent edf3f69 commit 899dc17

File tree

1 file changed

+172
-0
lines changed

1 file changed

+172
-0
lines changed

.gitignore

+172
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2+
# Created by https://www.gitignore.io/api/csharp,visualstudio,windows
3+
4+
### Csharp ###
15
## Ignore Visual Studio temporary files, build results, and
26
## files generated by popular Visual Studio add-ons.
37

@@ -42,7 +46,9 @@ dlldata.c
4246

4347
# DNX
4448
project.lock.json
49+
project.fragment.lock.json
4550
artifacts/
51+
Properties/launchSettings.json
4652

4753
*_i.c
4854
*_p.c
@@ -109,6 +115,10 @@ _TeamCity*
109115
# DotCover is a Code Coverage Tool
110116
*.dotCover
111117

118+
# Visual Studio code coverage results
119+
*.coverage
120+
*.coveragexml
121+
112122
# NCrunch
113123
_NCrunch_*
114124
.*crunch*.local.xml
@@ -188,6 +198,7 @@ ClientBin/
188198
*~
189199
*.dbmdl
190200
*.dbproj.schemaview
201+
*.jfm
191202
*.pfx
192203
*.publishsettings
193204
node_modules/
@@ -232,6 +243,9 @@ FakesAssemblies/
232243
# Visual Studio 6 workspace options file
233244
*.opt
234245

246+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
247+
*.vbw
248+
235249
# Visual Studio LightSwitch build output
236250
**/*.HTMLClient/GeneratedArtifacts
237251
**/*.DesktopClient/GeneratedArtifacts
@@ -250,3 +264,161 @@ paket-files/
250264
# JetBrains Rider
251265
.idea/
252266
*.sln.iml
267+
268+
# CodeRush
269+
.cr/
270+
271+
# Python Tools for Visual Studio (PTVS)
272+
__pycache__/
273+
*.pyc
274+
275+
# Cake - Uncomment if you are using it
276+
# tools/
277+
278+
279+
### Windows ###
280+
# Windows image file caches
281+
Thumbs.db
282+
ehthumbs.db
283+
284+
# Folder config file
285+
Desktop.ini
286+
287+
# Recycle Bin used on file shares
288+
$RECYCLE.BIN/
289+
290+
# Windows Installer files
291+
*.cab
292+
*.msi
293+
*.msm
294+
*.msp
295+
296+
# Windows shortcuts
297+
*.lnk
298+
299+
300+
### VisualStudio ###
301+
## Ignore Visual Studio temporary files, build results, and
302+
## files generated by popular Visual Studio add-ons.
303+
304+
# User-specific files
305+
306+
# User-specific files (MonoDevelop/Xamarin Studio)
307+
308+
# Build results
309+
310+
# Visual Studio 2015 cache/options directory
311+
# Uncomment if you have tasks that create the project's static files in wwwroot
312+
#wwwroot/
313+
314+
# MSTest test Results
315+
316+
# NUNIT
317+
318+
# Build Results of an ATL Project
319+
320+
# DNX
321+
322+
323+
# Chutzpah Test files
324+
325+
# Visual C++ cache files
326+
327+
# Visual Studio profiler
328+
329+
# TFS 2012 Local Workspace
330+
331+
# Guidance Automation Toolkit
332+
333+
# ReSharper is a .NET coding add-in
334+
335+
# JustCode is a .NET coding add-in
336+
337+
# TeamCity is a build add-in
338+
339+
# DotCover is a Code Coverage Tool
340+
341+
# Visual Studio code coverage results
342+
343+
# NCrunch
344+
345+
# MightyMoose
346+
347+
# Web workbench (sass)
348+
349+
# Installshield output folder
350+
351+
# DocProject is a documentation generator add-in
352+
353+
# Click-Once directory
354+
355+
# Publish Web Output
356+
# TODO: Comment the next line if you want to checkin your web deploy settings
357+
# but database connection strings (with potential passwords) will be unencrypted
358+
359+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
360+
# checkin your Azure Web App publish settings, but sensitive information contained
361+
# in these scripts will be unencrypted
362+
363+
# NuGet Packages
364+
# The packages folder can be ignored because of Package Restore
365+
# except build/, which is used as an MSBuild target.
366+
# Uncomment if necessary however generally it will be regenerated when needed
367+
#!**/packages/repositories.config
368+
# NuGet v3's project.json files produces more ignoreable files
369+
370+
# Microsoft Azure Build Output
371+
372+
# Microsoft Azure Emulator
373+
374+
# Windows Store app package directories and files
375+
376+
# Visual Studio cache files
377+
# files ending in .cache can be ignored
378+
# but keep track of directories ending in .cache
379+
380+
# Others
381+
382+
# Since there are multiple workflows, uncomment next line to ignore bower_components
383+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
384+
#bower_components/
385+
386+
# RIA/Silverlight projects
387+
388+
# Backup & report files from converting an old project file
389+
# to a newer Visual Studio version. Backup files are not needed,
390+
# because we have git ;-)
391+
392+
# SQL Server files
393+
394+
# Business Intelligence projects
395+
396+
# Microsoft Fakes
397+
398+
# GhostDoc plugin setting file
399+
400+
# Node.js Tools for Visual Studio
401+
402+
# Visual Studio 6 build log
403+
404+
# Visual Studio 6 workspace options file
405+
406+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
407+
408+
# Visual Studio LightSwitch build output
409+
410+
# Paket dependency manager
411+
412+
# FAKE - F# Make
413+
414+
# JetBrains Rider
415+
416+
# CodeRush
417+
418+
# Python Tools for Visual Studio (PTVS)
419+
420+
# Cake - Uncomment if you are using it
421+
# tools/
422+
423+
### VisualStudio Patch ###
424+
build/

0 commit comments

Comments
 (0)