Skip to content

Commit 4f07537

Browse files
authored
Merge pull request #1 from A-Programmer/develop
Add gitignore file
2 parents cd68500 + 7183ca8 commit 4f07537

File tree

45 files changed

+136
-4114
lines changed

Some content is hidden

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

45 files changed

+136
-4114
lines changed

.gitignore

Lines changed: 136 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
backup/
2+
dist/
3+
docs/
4+
.vs/
5+
.code/
6+
.vscode/
7+
src/.vs/
8+
**/.DS_Store
9+
**/.DS_Store?
10+
**/.vs/
11+
**/.code/
12+
**/.vscode/
13+
**/.idea/
14+
**/Logs/
15+
**/Resources/
16+
17+
./appsettings.json
18+
19+
## .NET files
20+
**/[Dd]ebug/
21+
**/[Dd]ebugPublic/
22+
**/[Rr]elease/
23+
**/[Rr]eleases/
24+
**/x64/
25+
**/x86/
26+
**/build/
27+
**/bld/
28+
**/[Bb]in/
29+
**/[Oo]bj/
30+
**/[Oo]ut/
31+
**/msbuild.log
32+
**/msbuild.err
33+
**/msbuild.wrn
34+
35+
## others
36+
[Dd]ebug/
37+
[Dd]ebugPublic/
38+
[Rr]elease/
39+
[Rr]eleases/
40+
x64/
41+
x86/
42+
build/
43+
bld/
44+
[Bb]in/
45+
[Oo]bj/
46+
[Oo]ut/
47+
msbuild.log
48+
msbuild.err
49+
msbuild.wrn
50+
51+
# Compiled source #
52+
###################
53+
*.com
54+
*.class
55+
*.dll
56+
*.exe
57+
*.o
58+
*.so
59+
*.com
60+
*.class
61+
*.dll
62+
*.exe
63+
*.o
64+
*.so
65+
66+
# Packages #
67+
############
68+
# it's better to unpack these files and commit the raw source
69+
# git has its own built in compression methods
70+
*.7z
71+
*.dmg
72+
*.gz
73+
*.iso
74+
*.jar
75+
*.rar
76+
*.tar
77+
*.zip
78+
*.7z
79+
*.dmg
80+
*.gz
81+
*.iso
82+
*.jar
83+
*.rar
84+
*.tar
85+
*.zip
86+
87+
# Logs and databases #
88+
######################
89+
*.log
90+
*.sql
91+
*.sqlite
92+
*.log
93+
*.sql
94+
*.sqlite
95+
96+
# OS generated files #
97+
######################
98+
.DS_Store
99+
.DS_Store?
100+
._*
101+
.Spotlight-V100
102+
.Trashes
103+
ehthumbs.db
104+
Thumbs.db
105+
.DS_Store
106+
.DS_Store?
107+
._*
108+
.Spotlight-V100
109+
.Trashes
110+
ehthumbs.db
111+
Thumbs.db
112+
######################
113+
114+
*.swp
115+
*.*~
116+
project.lock.json
117+
*.pyc
118+
nupkg/
119+
*.swp
120+
*.*~
121+
project.lock.json
122+
*.pyc
123+
nupkg/
124+
125+
# User-specific files
126+
*.suo
127+
*.user
128+
*.userosscache
129+
*.sln.docstates
130+
*.suo
131+
*.user
132+
*.userosscache
133+
*.sln.docstates
134+
135+
#### Build results
136+
-35.6 KB
Binary file not shown.

0 commit comments

Comments
 (0)