Skip to content

Commit 8e1d12c

Browse files
committed
vnext
new version of the Azure Maps Code Samples
1 parent a12f139 commit 8e1d12c

File tree

4,337 files changed

+120893
-10848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

4,337 files changed

+120893
-10848
lines changed

.github/CODE_OF_CONDUCT.md

-9
This file was deleted.

.github/ISSUE_TEMPLATE.md

-42
This file was deleted.

.github/PULL_REQUEST_TEMPLATE.md

-36
This file was deleted.

.gitignore

+83-21
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
55

66
# User-specific files
7+
*.rsuser
78
*.suo
89
*.user
910
*.userosscache
@@ -12,50 +13,68 @@
1213
# User-specific files (MonoDevelop/Xamarin Studio)
1314
*.userprefs
1415

16+
# Mono auto generated files
17+
mono_crash.*
18+
1519
# Build results
1620
[Dd]ebug/
1721
[Dd]ebugPublic/
1822
[Rr]elease/
1923
[Rr]eleases/
2024
x64/
2125
x86/
26+
[Aa][Rr][Mm]/
27+
[Aa][Rr][Mm]64/
2228
bld/
2329
[Bb]in/
2430
[Oo]bj/
2531
[Ll]og/
32+
[Ll]ogs/
2633

27-
# Visual Studio 2015 cache/options directory
34+
# Visual Studio 2015/2017 cache/options directory
2835
.vs/
2936
# Uncomment if you have tasks that create the project's static files in wwwroot
3037
#wwwroot/
3138

39+
# Visual Studio 2017 auto generated files
40+
Generated\ Files/
41+
3242
# MSTest test Results
3343
[Tt]est[Rr]esult*/
3444
[Bb]uild[Ll]og.*
3545

36-
# NUNIT
46+
# NUnit
3747
*.VisualState.xml
3848
TestResult.xml
49+
nunit-*.xml
3950

4051
# Build Results of an ATL Project
4152
[Dd]ebugPS/
4253
[Rr]eleasePS/
4354
dlldata.c
4455

56+
# Benchmark Results
57+
BenchmarkDotNet.Artifacts/
58+
4559
# .NET Core
4660
project.lock.json
4761
project.fragment.lock.json
4862
artifacts/
49-
**/Properties/launchSettings.json
5063

64+
# StyleCop
65+
StyleCopReport.xml
66+
67+
# Files built by Visual Studio
5168
*_i.c
5269
*_p.c
53-
*_i.h
70+
*_h.h
5471
*.ilk
5572
*.meta
5673
*.obj
74+
*.iobj
5775
*.pch
5876
*.pdb
77+
*.ipdb
5978
*.pgc
6079
*.pgd
6180
*.rsp
@@ -65,6 +84,7 @@ artifacts/
6584
*.tlh
6685
*.tmp
6786
*.tmp_proj
87+
*_wpftmp.csproj
6888
*.log
6989
*.vspscc
7090
*.vssscc
@@ -93,6 +113,9 @@ ipch/
93113
*.vspx
94114
*.sap
95115

116+
# Visual Studio Trace Files
117+
*.e2e
118+
96119
# TFS 2012 Local Workspace
97120
$tf/
98121

@@ -104,15 +127,16 @@ _ReSharper*/
104127
*.[Rr]e[Ss]harper
105128
*.DotSettings.user
106129

107-
# JustCode is a .NET coding add-in
108-
.JustCode
109-
110130
# TeamCity is a build add-in
111131
_TeamCity*
112132

113133
# DotCover is a Code Coverage Tool
114134
*.dotCover
115135

136+
# AxoCover is a Code Coverage Tool
137+
.axoCover/*
138+
!.axoCover/settings.json
139+
116140
# Visual Studio code coverage results
117141
*.coverage
118142
*.coveragexml
@@ -148,7 +172,7 @@ publish/
148172
# Publish Web Output
149173
*.[Pp]ublish.xml
150174
*.azurePubxml
151-
# TODO: Comment the next line if you want to checkin your web deploy settings
175+
# Note: Comment the next line if you want to checkin your web deploy settings,
152176
# but database connection strings (with potential passwords) will be unencrypted
153177
*.pubxml
154178
*.publishproj
@@ -160,12 +184,14 @@ PublishScripts/
160184

161185
# NuGet Packages
162186
*.nupkg
187+
# NuGet Symbol Packages
188+
*.snupkg
163189
# The packages folder can be ignored because of Package Restore
164-
**/packages/*
190+
**/[Pp]ackages/*
165191
# except build/, which is used as an MSBuild target.
166-
!**/packages/build/
192+
!**/[Pp]ackages/build/
167193
# Uncomment if necessary however generally it will be regenerated when needed
168-
#!**/packages/repositories.config
194+
#!**/[Pp]ackages/repositories.config
169195
# NuGet v3's project.json files produces more ignorable files
170196
*.nuget.props
171197
*.nuget.targets
@@ -183,12 +209,15 @@ AppPackages/
183209
BundleArtifacts/
184210
Package.StoreAssociation.xml
185211
_pkginfo.txt
212+
*.appx
213+
*.appxbundle
214+
*.appxupload
186215

187216
# Visual Studio cache files
188217
# files ending in .cache can be ignored
189218
*.[Cc]ache
190219
# but keep track of directories ending in .cache
191-
!*.[Cc]ache/
220+
!?*.[Cc]ache/
192221

193222
# Others
194223
ClientBin/
@@ -201,6 +230,10 @@ ClientBin/
201230
*.publishsettings
202231
orleans.codegen.cs
203232

233+
# Including strong name files can present a security risk
234+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
235+
#*.snk
236+
204237
# Since there are multiple workflows, uncomment next line to ignore bower_components
205238
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
206239
#bower_components/
@@ -215,6 +248,8 @@ _UpgradeReport_Files/
215248
Backup*/
216249
UpgradeLog*.XML
217250
UpgradeLog*.htm
251+
ServiceFabricBackup/
252+
*.rptproj.bak
218253

219254
# SQL Server files
220255
*.mdf
@@ -225,6 +260,10 @@ UpgradeLog*.htm
225260
*.rdl.data
226261
*.bim.layout
227262
*.bim_*.settings
263+
*.rptproj.rsuser
264+
*- [Bb]ackup.rdl
265+
*- [Bb]ackup ([0-9]).rdl
266+
*- [Bb]ackup ([0-9][0-9]).rdl
228267

229268
# Microsoft Fakes
230269
FakesAssemblies/
@@ -236,9 +275,6 @@ FakesAssemblies/
236275
.ntvs_analysis.dat
237276
node_modules/
238277

239-
# Typescript v1 declaration files
240-
typings/
241-
242278
# Visual Studio 6 build log
243279
*.plg
244280

@@ -263,12 +299,8 @@ paket-files/
263299
# FAKE - F# Make
264300
.fake/
265301

266-
# JetBrains Rider
267-
.idea/
268-
*.sln.iml
269-
270-
# CodeRush
271-
.cr/
302+
# CodeRush personal settings
303+
.cr/personal
272304

273305
# Python Tools for Visual Studio (PTVS)
274306
__pycache__/
@@ -278,6 +310,9 @@ __pycache__/
278310
# tools/**
279311
# !tools/packages.config
280312

313+
# Tabs Studio
314+
*.tss
315+
281316
# Telerik's JustMock configuration file
282317
*.jmconfig
283318

@@ -286,3 +321,30 @@ __pycache__/
286321
*.btm.cs
287322
*.odx.cs
288323
*.xsd.cs
324+
325+
# OpenCover UI analysis results
326+
OpenCover/
327+
328+
# Azure Stream Analytics local run output
329+
ASALocalRun/
330+
331+
# MSBuild Binary and Structured Log
332+
*.binlog
333+
334+
# NVidia Nsight GPU debugger configuration file
335+
*.nvuser
336+
337+
# MFractors (Xamarin productivity tool) working folder
338+
.mfractor/
339+
340+
# Local History for Visual Studio
341+
.localhistory/
342+
343+
# BeatPulse healthcheck temp database
344+
healthchecksdb
345+
346+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
347+
MigrationBackup/
348+
349+
# Ionide (cross platform F# VS Code tools) working folder
350+
.ionide/

0 commit comments

Comments
 (0)