Skip to content

Commit 8f5947d

Browse files
committed
push origin masterMerge branch 'paschott-master'
2 parents 536c80d + 24d177b commit 8f5947d

5 files changed

Lines changed: 77 additions & 65420 deletions

File tree

.gitignore

Lines changed: 77 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
## Ignore Visual Studio temporary files, build results, and
22
## files generated by popular Visual Studio add-ons.
3-
##
4-
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
53

64
# User-specific files
75
*.suo
@@ -19,10 +17,10 @@
1917
[Rr]eleases/
2018
x64/
2119
x86/
20+
build/
2221
bld/
2322
[Bb]in/
2423
[Oo]bj/
25-
[Ll]og/
2624

2725
# Visual Studio 2015 cache/options directory
2826
.vs/
@@ -50,6 +48,9 @@ project.lock.json
5048
project.fragment.lock.json
5149
artifacts/
5250
**/Properties/launchSettings.json
51+
# DNX
52+
project.lock.json
53+
artifacts/
5354

5455
*_i.c
5556
*_p.c
@@ -89,6 +90,9 @@ ipch/
8990
*.cachefile
9091
*.VC.db
9192
*.VC.VC.opendb
93+
*.opensdf
94+
*.sdf
95+
*.cachefile
9296

9397
# Visual Studio profiler
9498
*.psess
@@ -153,47 +157,30 @@ DocProject/Help/Html2
153157
DocProject/Help/html
154158

155159
# Click-Once directory
156-
#publish/
160+
# publish/
157161

158162
# Publish Web Output
159-
#*.[Pp]ublish.xml
160163
*.azurePubxml
161-
# Note: Comment the next line if you want to checkin your web deploy settings,
164+
# TODO: Comment the next line if you want to checkin your web deploy settings
162165
# but database connection strings (with potential passwords) will be unencrypted
163166
*.pubxml
164167
*.publishproj
165168

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-
171169
# NuGet Packages
172170
*.nupkg
173171
# The packages folder can be ignored because of Package Restore
174-
**/[Pp]ackages/*
172+
**/packages/*
175173
# except build/, which is used as an MSBuild target.
176-
!**/[Pp]ackages/build/
174+
!**/packages/build/
177175
# Uncomment if necessary however generally it will be regenerated when needed
178-
#!**/[Pp]ackages/repositories.config
179-
# NuGet v3's project.json files produces more ignorable files
180-
*.nuget.props
181-
*.nuget.targets
176+
#!**/packages/repositories.config
182177

183-
# Microsoft Azure Build Output
178+
# Windows Azure Build Output
184179
csx/
185180
*.build.csdef
186181

187-
# Microsoft Azure Emulator
188-
ecf/
189-
rcf/
190-
191-
# Windows Store app package directories and files
182+
# Windows Store app package directory
192183
AppPackages/
193-
BundleArtifacts/
194-
Package.StoreAssociation.xml
195-
_pkginfo.txt
196-
*.appx
197184

198185
# Visual Studio cache files
199186
# files ending in .cache can be ignored
@@ -203,6 +190,7 @@ _pkginfo.txt
203190

204191
# Others
205192
ClientBin/
193+
[Ss]tyle[Cc]op.*
206194
~$*
207195
*~
208196
*.dbmdl
@@ -216,6 +204,11 @@ orleans.codegen.cs
216204
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
217205
#bower_components/
218206

207+
*.pfx
208+
*.publishsettings
209+
node_modules/
210+
orleans.codegen.cs
211+
219212
# RIA/Silverlight projects
220213
Generated_Code/
221214

@@ -249,6 +242,8 @@ node_modules/
249242

250243
# Typescript v1 declaration files
251244
typings/
245+
# Node.js Tools for Visual Studio
246+
.ntvs_analysis.dat
252247

253248
# Visual Studio 6 build log
254249
*.plg
@@ -304,6 +299,61 @@ __pycache__/
304299
# OpenCover UI analysis results
305300
OpenCover/
306301

302+
/build
303+
/Build
304+
/deploy
305+
/package
306+
bin/
307+
obj/
308+
sql/
309+
*/obj/debug
310+
**/Debug
311+
#ignore thumbnails created by windows
312+
Thumbs.db
313+
#Ignore files build by Visual Studio
314+
*.obj
315+
*.pdb
316+
*.user
317+
*.aps
318+
*.pch
319+
*.docstates
320+
*.vspscc
321+
*_i.c
322+
*_p.c
323+
*.ncb
324+
*.suo
325+
*.tlb
326+
*.dbmdl
327+
*.schemaview
328+
*.tlh
329+
*.cache
330+
*.ilk
331+
*.log
332+
[Bb]in
333+
[Dd]ebug*/
334+
*.lib
335+
*.sbr
336+
obj/
337+
[Rr]elease*/
338+
_ReSharper*/
339+
[Tt]est[Rr]esult*
340+
*.docstates
341+
*.swp
342+
*.*~
343+
*.gpState
344+
*.ReSharper*
345+
*.preflight
346+
*.nocommit
347+
#Ignore Recovery Files made by Excel
348+
~$*.xlsx
349+
*.rdl.data
350+
351+
*.jfm
352+
353+
#======================================================================================
354+
# The below section could possibly be removed as these should be ignored by the above.
355+
#======================================================================================
356+
307357
samples/in-memory/ticket-reservations/DemoWorkload/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
308358
*.nupkg
309359
samples/in-memory/ticket-reservations/packages/CircularGauge.1.0.0/CreatePackageFile.bat

samples/databases/wide-world-importers/wwi-dw-ssdt/wwi-dw-ssdt/Import Schema Logs/wwi-dw-ssdt_20170123050856.log

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

samples/databases/wide-world-importers/wwi-ssdt/wwi-ssdt/Import Schema Logs/wwi-ssdt_20161114100047.log

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

0 commit comments

Comments
 (0)