Skip to content

Commit 0d6e34b

Browse files
More comprehensive gitignore
1 parent 249cfde commit 0d6e34b

File tree

3 files changed

+268
-40
lines changed

3 files changed

+268
-40
lines changed

.gitignore

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

6-
#OSX
7-
.DS_Store
8-
/.vs/*
268+
# JetBrains Rider
269+
.idea/
270+
*.sln.iml

src/.gitignore

Lines changed: 0 additions & 34 deletions
This file was deleted.

src/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)