Skip to content
This repository was archived by the owner on May 21, 2023. It is now read-only.

Commit 3464b89

Browse files
authored
Create .gitignore
1 parent 6e5f0f5 commit 3464b89

File tree

1 file changed

+225
-0
lines changed

1 file changed

+225
-0
lines changed

.gitignore

Lines changed: 225 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,225 @@
1+
# The following command works for downloading when using Git for Windows:
2+
# curl -LOf http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
3+
#
4+
# Download this file using PowerShell v3 under Windows with the following comand:
5+
# Invoke-WebRequest https://gist.githubusercontent.com/kmorcinek/2710267/raw/ -OutFile .gitignore
6+
#
7+
# or wget:
8+
# wget --no-check-certificate http://gist.githubusercontent.com/kmorcinek/2710267/raw/.gitignore
9+
10+
# User-specific files
11+
*.suo
12+
*.user
13+
*.sln.docstates
14+
15+
# Build results
16+
[Dd]ebug/
17+
[Rr]elease/
18+
x64/
19+
[Bb]in/
20+
[Oo]bj/
21+
# build folder is nowadays used for build scripts and should not be ignored
22+
#build/
23+
24+
# NuGet Packages
25+
*.nupkg
26+
# The packages folder can be ignored because of Package Restore
27+
**/packages/*
28+
# except build/, which is used as an MSBuild target.
29+
!**/packages/build/
30+
# Uncomment if necessary however generally it will be regenerated when needed
31+
#!**/packages/repositories.config
32+
33+
# MSTest test Results
34+
[Tt]est[Rr]esult*/
35+
[Bb]uild[Ll]og.*
36+
37+
*_i.c
38+
*_p.c
39+
*.ilk
40+
*.meta
41+
*.obj
42+
*.pch
43+
*.pdb
44+
*.pgc
45+
*.pgd
46+
*.rsp
47+
*.sbr
48+
*.tlb
49+
*.tli
50+
*.tlh
51+
*.tmp
52+
*.tmp_proj
53+
*.log
54+
*.vspscc
55+
*.vssscc
56+
.builds
57+
*.pidb
58+
*.log
59+
*.scc
60+
61+
# OS generated files #
62+
.DS_Store*
63+
Icon?
64+
65+
# Visual C++ cache files
66+
ipch/
67+
*.aps
68+
*.ncb
69+
*.opensdf
70+
*.sdf
71+
*.cachefile
72+
73+
# Visual Studio profiler
74+
*.psess
75+
*.vsp
76+
*.vspx
77+
78+
# Guidance Automation Toolkit
79+
*.gpState
80+
81+
# ReSharper is a .NET coding add-in
82+
_ReSharper*/
83+
*.[Rr]e[Ss]harper
84+
85+
# TeamCity is a build add-in
86+
_TeamCity*
87+
88+
# DotCover is a Code Coverage Tool
89+
*.dotCover
90+
91+
# NCrunch
92+
*.ncrunch*
93+
.*crunch*.local.xml
94+
95+
# Installshield output folder
96+
[Ee]xpress/
97+
98+
# DocProject is a documentation generator add-in
99+
DocProject/buildhelp/
100+
DocProject/Help/*.HxT
101+
DocProject/Help/*.HxC
102+
DocProject/Help/*.hhc
103+
DocProject/Help/*.hhk
104+
DocProject/Help/*.hhp
105+
DocProject/Help/Html2
106+
DocProject/Help/html
107+
108+
# Click-Once directory
109+
publish/
110+
111+
# Publish Web Output
112+
*.Publish.xml
113+
114+
# Windows Azure Build Output
115+
csx
116+
*.build.csdef
117+
118+
# Windows Store app package directory
119+
AppPackages/
120+
121+
# Others
122+
*.Cache
123+
ClientBin/
124+
[Ss]tyle[Cc]op.*
125+
~$*
126+
*~
127+
*.dbmdl
128+
*.[Pp]ublish.xml
129+
*.pfx
130+
*.publishsettings
131+
modulesbin/
132+
tempbin/
133+
134+
# EPiServer Site file (VPP)
135+
AppData/
136+
137+
# RIA/Silverlight projects
138+
Generated_Code/
139+
140+
# Backup & report files from converting an old project file to a newer
141+
# Visual Studio version. Backup files are not needed, because we have git ;-)
142+
_UpgradeReport_Files/
143+
Backup*/
144+
UpgradeLog*.XML
145+
UpgradeLog*.htm
146+
147+
# vim
148+
*.txt~
149+
*.swp
150+
*.swo
151+
152+
# Temp files when opening LibreOffice on ubuntu
153+
.~lock.*
154+
155+
# svn
156+
.svn
157+
158+
# CVS - Source Control
159+
**/CVS/
160+
161+
# Remainings from resolving conflicts in Source Control
162+
*.orig
163+
164+
# SQL Server files
165+
**/App_Data/*.mdf
166+
**/App_Data/*.ldf
167+
**/App_Data/*.sdf
168+
169+
170+
#LightSwitch generated files
171+
GeneratedArtifacts/
172+
_Pvt_Extensions/
173+
ModelManifest.xml
174+
175+
# =========================
176+
# Windows detritus
177+
# =========================
178+
179+
# Windows image file caches
180+
Thumbs.db
181+
ehthumbs.db
182+
183+
# Folder config file
184+
Desktop.ini
185+
186+
# Recycle Bin used on file shares
187+
$RECYCLE.BIN/
188+
189+
# Mac desktop service store files
190+
.DS_Store
191+
192+
# SASS Compiler cache
193+
.sass-cache
194+
195+
# Visual Studio 2014 CTP
196+
**/*.sln.ide
197+
198+
# Visual Studio temp something
199+
.vs/
200+
201+
# dotnet stuff
202+
project.lock.json
203+
204+
# VS 2015+
205+
*.vc.vc.opendb
206+
*.vc.db
207+
208+
# Rider
209+
.idea/
210+
211+
# Visual Studio Code
212+
.vscode/
213+
214+
# Output folder used by Webpack or other FE stuff
215+
**/node_modules/*
216+
**/wwwroot/*
217+
218+
# SpecFlow specific
219+
*.feature.cs
220+
*.feature.xlsx.*
221+
*.Specs_*.html
222+
223+
#####
224+
# End of core ignore list, below put you custom 'per project' settings (patterns or path)
225+
#####

0 commit comments

Comments
 (0)