Skip to content

Commit deb9c85

Browse files
committed
Added .gitignore
1 parent e004945 commit deb9c85

File tree

1 file changed

+282
-0
lines changed

1 file changed

+282
-0
lines changed

.gitignore

Lines changed: 282 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,282 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
## Local history files
5+
.history/
6+
.vshistory/
7+
8+
# User-specific files
9+
*.suo
10+
*.user
11+
*.userosscache
12+
*.sln.docstates
13+
.vscode/
14+
15+
# User-specific files (MonoDevelop/Xamarin Studio)
16+
*.userprefs
17+
18+
# Build results
19+
[Dd]ebug/
20+
[Dd]ebugPublic/
21+
[Rr]elease/
22+
[Rr]eleases/
23+
x64/
24+
x86/
25+
bld/
26+
[Bb]in/
27+
[Oo]bj/
28+
[Ll]og/
29+
30+
# Visual Studio 2015 cache/options directory
31+
.vs/
32+
33+
# .js files created on build:
34+
src/Web/WebMVC/wwwroot/js/site*
35+
36+
# Uncomment if you have tasks that create the project's static files in wwwroot
37+
**/wwwroot/lib/
38+
!/wwwroot/lib/signalr
39+
!/wwwroot/lib/toastr
40+
41+
# MSTest test Results
42+
[Tt]est[Rr]esult*/
43+
[Bb]uild[Ll]og.*
44+
45+
# NUNIT
46+
*.VisualState.xml
47+
TestResult.xml
48+
49+
tests-results/
50+
51+
# Build Results of an ATL Project
52+
[Dd]ebugPS/
53+
[Rr]eleasePS/
54+
dlldata.c
55+
56+
# DNX
57+
project.lock.json
58+
artifacts/
59+
60+
*_i.c
61+
*_p.c
62+
*_i.h
63+
*.ilk
64+
*.meta
65+
*.obj
66+
*.pch
67+
*.pdb
68+
*.pgc
69+
*.pgd
70+
*.rsp
71+
*.sbr
72+
*.tlb
73+
*.tli
74+
*.tlh
75+
*.tmp
76+
*.tmp_proj
77+
*.log
78+
*.vspscc
79+
*.vssscc
80+
.builds
81+
*.pidb
82+
*.svclog
83+
*.scc
84+
85+
# Chutzpah Test files
86+
_Chutzpah*
87+
88+
# Visual C++ cache files
89+
ipch/
90+
*.aps
91+
*.ncb
92+
*.opendb
93+
*.opensdf
94+
*.sdf
95+
*.cachefile
96+
*.VC.db
97+
*.VC.VC.opendb
98+
99+
# Visual Studio profiler
100+
*.psess
101+
*.vsp
102+
*.vspx
103+
*.sap
104+
105+
# TFS 2012 Local Workspace
106+
$tf/
107+
108+
# Guidance Automation Toolkit
109+
*.gpState
110+
111+
# ReSharper is a .NET coding add-in
112+
_ReSharper*/
113+
*.[Rr]e[Ss]harper
114+
*.DotSettings.user
115+
116+
# JustCode is a .NET coding add-in
117+
.JustCode
118+
119+
# TeamCity is a build add-in
120+
_TeamCity*
121+
122+
# DotCover is a Code Coverage Tool
123+
*.dotCover
124+
125+
# NCrunch
126+
_NCrunch_*
127+
.*crunch*.local.xml
128+
nCrunchTemp_*
129+
130+
# MightyMoose
131+
*.mm.*
132+
AutoTest.Net/
133+
134+
# Web workbench (sass)
135+
.sass-cache/
136+
137+
# Installshield output folder
138+
[Ee]xpress/
139+
140+
# DocProject is a documentation generator add-in
141+
DocProject/buildhelp/
142+
DocProject/Help/*.HxT
143+
DocProject/Help/*.HxC
144+
DocProject/Help/*.hhc
145+
DocProject/Help/*.hhk
146+
DocProject/Help/*.hhp
147+
DocProject/Help/Html2
148+
DocProject/Help/html
149+
150+
# Click-Once directory
151+
publish/
152+
153+
# Publish Web Output
154+
*.[Pp]ublish.xml
155+
*.azurePubxml
156+
# TODO: Comment the next line if you want to checkin your web deploy settings
157+
# but database connection strings (with potential passwords) will be unencrypted
158+
*.pubxml
159+
*.publishproj
160+
161+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
162+
# checkin your Azure Web App publish settings, but sensitive information contained
163+
# in these scripts will be unencrypted
164+
PublishScripts/
165+
166+
# NuGet Packages
167+
*.nupkg
168+
# The packages folder can be ignored because of Package Restore
169+
**/packages/*
170+
# except build/, which is used as an MSBuild target.
171+
!**/packages/build/
172+
# Uncomment if necessary however generally it will be regenerated when needed
173+
#!**/packages/repositories.config
174+
# NuGet v3's project.json files produces more ignoreable files
175+
*.nuget.props
176+
*.nuget.targets
177+
178+
# Microsoft Azure Build Output
179+
csx/
180+
*.build.csdef
181+
182+
# Microsoft Azure Emulator
183+
ecf/
184+
rcf/
185+
186+
# Windows Store app package directories and files
187+
AppPackages/
188+
BundleArtifacts/
189+
Package.StoreAssociation.xml
190+
_pkginfo.txt
191+
192+
# Visual Studio cache files
193+
# files ending in .cache can be ignored
194+
*.[Cc]ache
195+
# but keep track of directories ending in .cache
196+
!*.[Cc]ache/
197+
198+
# Others
199+
ClientBin/
200+
~$*
201+
*~
202+
*.dbmdl
203+
*.dbproj.schemaview
204+
*.publishsettings
205+
node_modules/
206+
orleans.codegen.cs
207+
208+
# Since there are multiple workflows, uncomment next line to ignore bower_components
209+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
210+
#bower_components/
211+
212+
# RIA/Silverlight projects
213+
Generated_Code/
214+
215+
# Backup & report files from converting an old project file
216+
# to a newer Visual Studio version. Backup files are not needed,
217+
# because we have git ;-)
218+
_UpgradeReport_Files/
219+
Backup*/
220+
UpgradeLog*.XML
221+
UpgradeLog*.htm
222+
223+
# SQL Server files
224+
*.mdf
225+
*.ldf
226+
227+
# Business Intelligence projects
228+
*.rdl.data
229+
*.bim.layout
230+
*.bim_*.settings
231+
232+
# Microsoft Fakes
233+
FakesAssemblies/
234+
235+
# GhostDoc plugin setting file
236+
*.GhostDoc.xml
237+
238+
# Node.js Tools for Visual Studio
239+
.ntvs_analysis.dat
240+
241+
# Visual Studio 6 build log
242+
*.plg
243+
244+
# Visual Studio 6 workspace options file
245+
*.opt
246+
247+
# Visual Studio LightSwitch build output
248+
**/*.HTMLClient/GeneratedArtifacts
249+
**/*.DesktopClient/GeneratedArtifacts
250+
**/*.DesktopClient/ModelManifest.xml
251+
**/*.Server/GeneratedArtifacts
252+
**/*.Server/ModelManifest.xml
253+
_Pvt_Extensions
254+
255+
# Paket dependency manager
256+
.paket/paket.exe
257+
paket-files/
258+
259+
# FAKE - F# Make
260+
.fake/
261+
262+
# JetBrains Rider
263+
.idea/
264+
*.sln.iml
265+
pub/
266+
/src/Web/WebMVC/Properties/PublishProfiles/eShopOnContainersWebMVC2016 - Web Deploy-publish.ps1
267+
/src/Web/WebMVC/Properties/PublishProfiles/publish-module.psm1
268+
/src/Services/Identity/eShopOnContainers.Identity/Properties/launchSettings.json
269+
270+
#Ignore marker-file used to know which docker files we have.
271+
.eshopdocker_*
272+
/src/Web/WebMVC/wwwroot/lib
273+
/src/Web/WebMVC/wwwroot/css/site.min.css
274+
**/.kube/**
275+
.mfractor
276+
277+
# Ignore HealthCheckdb
278+
*healthchecksdb*
279+
280+
# Ignores all extra inf.yaml and app.yaml that are copied by prepare-devspaces.ps1
281+
src/**/app.yaml
282+
src/**/inf.yaml

0 commit comments

Comments
 (0)