Skip to content

Commit 42d9521

Browse files
committed
Source Code Finished
Version 0.1 ALPHA
1 parent 713e77d commit 42d9521

File tree

12 files changed

+2116
-0
lines changed

12 files changed

+2116
-0
lines changed

.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,59 @@
1+
2+
# Created by https://www.toptal.com/developers/gitignore/api/visualstudio,visualstudiocode,sublimetext,codeblocks
3+
# Edit at https://www.toptal.com/developers/gitignore?templates=visualstudio,visualstudiocode,sublimetext,codeblocks
4+
5+
### CodeBlocks ###
6+
# specific to CodeBlocks IDE
7+
*.layout
8+
*.depend
9+
# generated directories
10+
bin/
11+
obj/
12+
13+
### SublimeText ###
14+
# Cache files for Sublime Text
15+
*.tmlanguage.cache
16+
*.tmPreferences.cache
17+
*.stTheme.cache
18+
19+
# Workspace files are user-specific
20+
*.sublime-workspace
21+
22+
# Project files should be checked into the repository, unless a significant
23+
# proportion of contributors will probably not be using Sublime Text
24+
# *.sublime-project
25+
26+
# SFTP configuration file
27+
sftp-config.json
28+
29+
# Package control specific files
30+
Package Control.last-run
31+
Package Control.ca-list
32+
Package Control.ca-bundle
33+
Package Control.system-ca-bundle
34+
Package Control.cache/
35+
Package Control.ca-certs/
36+
Package Control.merged-ca-bundle
37+
Package Control.user-ca-bundle
38+
oscrypto-ca-bundle.crt
39+
bh_unicode_properties.cache
40+
41+
# Sublime-github package stores a github token in this file
42+
# https://packagecontrol.io/packages/sublime-github
43+
GitHub.sublime-settings
44+
45+
### VisualStudioCode ###
46+
.vscode/*
47+
!.vscode/tasks.json
48+
!.vscode/launch.json
49+
*.code-workspace
50+
51+
### VisualStudioCode Patch ###
52+
# Ignore all local history of files
53+
.history
54+
.ionide
55+
56+
### VisualStudio ###
157
## Ignore Visual Studio temporary files, build results, and
258
## files generated by popular Visual Studio add-ons.
359
##
@@ -23,6 +79,7 @@ mono_crash.*
2379
[Rr]eleases/
2480
x64/
2581
x86/
82+
[Ww][Ii][Nn]32/
2683
[Aa][Rr][Mm]/
2784
[Aa][Rr][Mm]64/
2885
bld/
@@ -61,6 +118,9 @@ project.lock.json
61118
project.fragment.lock.json
62119
artifacts/
63120

121+
# ASP.NET Scaffolding
122+
ScaffoldingReadMe.txt
123+
64124
# StyleCop
65125
StyleCopReport.xml
66126

@@ -137,6 +197,9 @@ _TeamCity*
137197
.axoCover/*
138198
!.axoCover/settings.json
139199

200+
# Coverlet is a free, cross platform Code Coverage Tool
201+
coverage*[.json, .xml, .info]
202+
140203
# Visual Studio code coverage results
141204
*.coverage
142205
*.coveragexml
@@ -348,3 +411,8 @@ MigrationBackup/
348411

349412
# Ionide (cross platform F# VS Code tools) working folder
350413
.ionide/
414+
415+
# Fody - auto-generated XML schema
416+
FodyWeavers.xsd
417+
418+
# End of https://www.toptal.com/developers/gitignore/api/visualstudio,visualstudiocode,sublimetext,codeblocks

0 commit comments

Comments
 (0)