Skip to content

Commit 1e866ed

Browse files
committed
Initial commit to new repo
0 parents  commit 1e866ed

File tree

18 files changed

+1841
-0
lines changed

18 files changed

+1841
-0
lines changed

.gitignore

Lines changed: 382 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,382 @@
1+
# OS X
2+
.DS_Store
3+
4+
# Xcode
5+
#
6+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
7+
8+
## Build generated
9+
build/
10+
DerivedData/
11+
12+
## Various settings
13+
*.pbxuser
14+
!default.pbxuser
15+
*.mode1v3
16+
!default.mode1v3
17+
*.mode2v3
18+
!default.mode2v3
19+
*.perspectivev3
20+
!default.perspectivev3
21+
#xcuserdata/
22+
23+
## Other
24+
*.moved-aside
25+
*.xccheckout
26+
*.xcscmblueprint
27+
28+
## Obj-C/Swift specific
29+
*.hmap
30+
*.ipa
31+
*.dSYM.zip
32+
*.dSYM
33+
34+
# MY ADDITIONS
35+
*.d
36+
*.o
37+
*.dia
38+
*.LinkFileList
39+
dgph
40+
#*.nib
41+
*SharedPrecompiledHeaders*
42+
*.build*
43+
44+
# CocoaPods
45+
#
46+
# We recommend against adding the Pods directory to your .gitignore. However
47+
# you should judge for yourself, the pros and cons are mentioned at:
48+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
49+
#
50+
# Pods/
51+
52+
# Carthage
53+
#
54+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
55+
# Carthage/Checkouts
56+
57+
Carthage/Build
58+
59+
# fastlane
60+
#
61+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
62+
# screenshots whenever they are needed.
63+
# For more information about the recommended setup visit:
64+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
65+
66+
fastlane/report.xml
67+
fastlane/Preview.html
68+
fastlane/screenshots
69+
fastlane/test_output
70+
71+
# Code Injection
72+
#
73+
# After new code Injection tools there's a generated folder /iOSInjectionProject
74+
# https://github.com/johnno1962/injectionforxcode
75+
76+
iOSInjectionProject/
77+
78+
## Ignore Visual Studio temporary files, build results, and
79+
## files generated by popular Visual Studio add-ons.
80+
##
81+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
82+
83+
# User-specific files
84+
*.suo
85+
*.user
86+
*.userosscache
87+
*.sln.docstates
88+
89+
# User-specific files (MonoDevelop/Xamarin Studio)
90+
*.userprefs
91+
92+
# Build results
93+
[Dd]ebug/
94+
[Dd]ebugPublic/
95+
[Rr]elease/
96+
[Rr]eleases/
97+
x64/
98+
x86/
99+
bld/
100+
[Bb]in/
101+
[Oo]bj/
102+
[Ll]og/
103+
104+
# Visual Studio 2015 cache/options directory
105+
.vs/
106+
# Uncomment if you have tasks that create the project's static files in wwwroot
107+
#wwwroot/
108+
109+
# MSTest test Results
110+
[Tt]est[Rr]esult*/
111+
[Bb]uild[Ll]og.*
112+
113+
# NUNIT
114+
*.VisualState.xml
115+
TestResult.xml
116+
117+
# Build Results of an ATL Project
118+
[Dd]ebugPS/
119+
[Rr]eleasePS/
120+
dlldata.c
121+
122+
# Benchmark Results
123+
BenchmarkDotNet.Artifacts/
124+
125+
# .NET Core
126+
project.lock.json
127+
project.fragment.lock.json
128+
artifacts/
129+
**/Properties/launchSettings.json
130+
131+
*_i.c
132+
*_p.c
133+
*_i.h
134+
*.ilk
135+
*.meta
136+
*.obj
137+
#*.pch
138+
*.pdb
139+
*.pgc
140+
*.pgd
141+
*.rsp
142+
*.sbr
143+
*.tlb
144+
*.tli
145+
*.tlh
146+
*.tmp
147+
*.tmp_proj
148+
*.log
149+
*.vspscc
150+
*.vssscc
151+
.builds
152+
*.pidb
153+
*.svclog
154+
*.scc
155+
156+
# Chutzpah Test files
157+
_Chutzpah*
158+
159+
# Visual C++ cache files
160+
ipch/
161+
*.aps
162+
*.ncb
163+
*.opendb
164+
*.opensdf
165+
*.sdf
166+
*.cachefile
167+
*.VC.db
168+
*.VC.VC.opendb
169+
170+
# Visual Studio profiler
171+
*.psess
172+
*.vsp
173+
*.vspx
174+
*.sap
175+
176+
# Visual Studio Trace Files
177+
*.e2e
178+
179+
# TFS 2012 Local Workspace
180+
$tf/
181+
182+
# Guidance Automation Toolkit
183+
*.gpState
184+
185+
# ReSharper is a .NET coding add-in
186+
_ReSharper*/
187+
*.[Rr]e[Ss]harper
188+
*.DotSettings.user
189+
190+
# JustCode is a .NET coding add-in
191+
.JustCode
192+
193+
# TeamCity is a build add-in
194+
_TeamCity*
195+
196+
# DotCover is a Code Coverage Tool
197+
*.dotCover
198+
199+
# AxoCover is a Code Coverage Tool
200+
.axoCover/*
201+
!.axoCover/settings.json
202+
203+
# Visual Studio code coverage results
204+
*.coverage
205+
*.coveragexml
206+
207+
# NCrunch
208+
_NCrunch_*
209+
.*crunch*.local.xml
210+
nCrunchTemp_*
211+
212+
# MightyMoose
213+
*.mm.*
214+
AutoTest.Net/
215+
216+
# Web workbench (sass)
217+
.sass-cache/
218+
219+
# Installshield output folder
220+
[Ee]xpress/
221+
222+
# DocProject is a documentation generator add-in
223+
DocProject/buildhelp/
224+
DocProject/Help/*.HxT
225+
DocProject/Help/*.HxC
226+
DocProject/Help/*.hhc
227+
DocProject/Help/*.hhk
228+
DocProject/Help/*.hhp
229+
DocProject/Help/Html2
230+
DocProject/Help/html
231+
232+
# Click-Once directory
233+
publish/
234+
235+
# Publish Web Output
236+
*.[Pp]ublish.xml
237+
*.azurePubxml
238+
# Note: Comment the next line if you want to checkin your web deploy settings,
239+
# but database connection strings (with potential passwords) will be unencrypted
240+
*.pubxml
241+
*.publishproj
242+
243+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
244+
# checkin your Azure Web App publish settings, but sensitive information contained
245+
# in these scripts will be unencrypted
246+
PublishScripts/
247+
248+
# NuGet Packages
249+
*.nupkg
250+
# The packages folder can be ignored because of Package Restore
251+
**/[Pp]ackages/*
252+
# except build/, which is used as an MSBuild target.
253+
!**/[Pp]ackages/build/
254+
# Uncomment if necessary however generally it will be regenerated when needed
255+
#!**/[Pp]ackages/repositories.config
256+
# NuGet v3's project.json files produces more ignorable files
257+
*.nuget.props
258+
*.nuget.targets
259+
260+
# Microsoft Azure Build Output
261+
csx/
262+
*.build.csdef
263+
264+
# Microsoft Azure Emulator
265+
ecf/
266+
rcf/
267+
268+
# Windows Store app package directories and files
269+
AppPackages/
270+
BundleArtifacts/
271+
Package.StoreAssociation.xml
272+
_pkginfo.txt
273+
*.appx
274+
275+
# Visual Studio cache files
276+
# files ending in .cache can be ignored
277+
*.[Cc]ache
278+
# but keep track of directories ending in .cache
279+
!*.[Cc]ache/
280+
281+
# Others
282+
ClientBin/
283+
~$*
284+
*~
285+
*.dbmdl
286+
*.dbproj.schemaview
287+
*.jfm
288+
*.pfx
289+
*.publishsettings
290+
orleans.codegen.cs
291+
292+
# Since there are multiple workflows, uncomment next line to ignore bower_components
293+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
294+
#bower_components/
295+
296+
# RIA/Silverlight projects
297+
Generated_Code/
298+
299+
# Backup & report files from converting an old project file
300+
# to a newer Visual Studio version. Backup files are not needed,
301+
# because we have git ;-)
302+
_UpgradeReport_Files/
303+
Backup*/
304+
UpgradeLog*.XML
305+
UpgradeLog*.htm
306+
307+
# SQL Server files
308+
*.mdf
309+
*.ldf
310+
*.ndf
311+
312+
# Business Intelligence projects
313+
*.rdl.data
314+
*.bim.layout
315+
*.bim_*.settings
316+
317+
# Microsoft Fakes
318+
FakesAssemblies/
319+
320+
# GhostDoc plugin setting file
321+
*.GhostDoc.xml
322+
323+
# Node.js Tools for Visual Studio
324+
.ntvs_analysis.dat
325+
node_modules/
326+
327+
# Typescript v1 declaration files
328+
typings/
329+
330+
# Visual Studio 6 build log
331+
*.plg
332+
333+
# Visual Studio 6 workspace options file
334+
*.opt
335+
336+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
337+
*.vbw
338+
339+
# Visual Studio LightSwitch build output
340+
**/*.HTMLClient/GeneratedArtifacts
341+
**/*.DesktopClient/GeneratedArtifacts
342+
**/*.DesktopClient/ModelManifest.xml
343+
**/*.Server/GeneratedArtifacts
344+
**/*.Server/ModelManifest.xml
345+
_Pvt_Extensions
346+
347+
# Paket dependency manager
348+
.paket/paket.exe
349+
paket-files/
350+
351+
# FAKE - F# Make
352+
.fake/
353+
354+
# JetBrains Rider
355+
.idea/
356+
*.sln.iml
357+
358+
# CodeRush
359+
.cr/
360+
361+
# Python Tools for Visual Studio (PTVS)
362+
__pycache__/
363+
*.pyc
364+
365+
# Cake - Uncomment if you are using it
366+
# tools/**
367+
# !tools/packages.config
368+
369+
# Tabs Studio
370+
*.tss
371+
372+
# Telerik's JustMock configuration file
373+
*.jmconfig
374+
375+
# BizTalk build output
376+
*.btp.cs
377+
*.btm.cs
378+
*.odx.cs
379+
*.xsd.cs
380+
381+
# OpenCover UI analysis results
382+
OpenCover/

0 commit comments

Comments
 (0)