-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.gitignore
More file actions
149 lines (117 loc) · 3.08 KB
/
.gitignore
File metadata and controls
149 lines (117 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
*.bak
# output: output directory of the legacy IGLib frameworks
/output
/output1
/output2
# Directories below are for IGLib and legacy IGLib Framework repositories.
# Each directory also has two additional variants, with suffices 1 and 2,
# such that two copies of these directoried can be stored temporarily.
# IGLibCore: The basic low level IGLib library.
/IGLibCore
/IGLibCore1
/IGLibCore2
# IGLibScripts: Helpful scripts.
/IGLibScripts
/IGLibScripts1
/IGLibScripts2
# IGLibScriptsPS: Fork of IGLibScripts where PowerShell scripts are retained.
/IGLibScriptsPS
# IGLibScriptsEXP: Fork of IGLibScripts - experimental (maybe deleted i the future).
/IGLibScriptsEXP
# IGLibScripting: Basic scripting library for IGLib.
/IGLibScripting
/IGLibScripting1
/IGLibScripting11
# IGLibScriptingCs: C# scripting library for IGLib.
/IGLibScriptingCs
/IGLibScriptingCs1
/IGLibScriptingCs2
# IGLibGraphics3D: 3D Graphics library for IGLib.
/IGLibGraphics3D
/IGLibGraphics3D1
/IGLibGraphics3D2
# IGLibSandbox: The development sandbox for IGLib libraries.
/IGLibSandbox
/IGLibSandbox1
/IGLibSandbox2
# IGLibApps: IGLib applications.
/IGLibApps
/IGLibApps1
/IGLibApps2
# IGLibEventAggregator: Simple event aggregator project, currently not in use
# but may be revived in some time the future.
/IGLibEventAggregator
/IGLibEventAggregator1
/IGLibEventAggregator2
# HashForm: Small MAUI learning project.
/HashForm
/HashForm1
/HashForm2
# Legacy IGLib Framework repositories:
# iglib: base IGLib Framework's libraries
/iglib
/iglib1
/iglib2
# iglibexternal: container of external dependencies for IGLib Framework
/iglibexternal
/iglibexternal1
/iglibexternal2
#igsolutions: contains IGLib solutions
/igsolutions
/igsolutions1
/igsolutions2
# shelldev
/shelldev
/shelldev1
/shelldev2
# iglibapp
/iglibapp
/iglibapp1
/iglibapp2
# data
/data
/data1
/data2
# iglearn: learning and research repository, contains e.g. collections of
# various groups of repositories with their cloning scripts (eg. for
# scripting, 2D and 3D graphics, numerics, optimization, image processing,
# machine learning, UI frameworks, code editors, cryptography
/iglearn
/iglearn1
/iglearn2
# igsandbox: sandbox development repository for IGLib Framework
/igsandbox
/igsandbox1
/igsandbox2
# igtest: a set of unit and other tests for the legacy IGLib Framework
/igtest
/igtest1
/igtest2
#unittests
/unittests
/unittests1
/unittests2
# WEB repositories:
/web
/web1
/web2
# IGLib Wiki:
/wiki.iglib
/wiki.iglib1
/wiki.iglib2
# workspaceprojects/ and workspaceprojects_all/ contain, among the others,
# testing material for IGLib. However, these directories are cloned two
# directories below the container directory that containe the iglib/
# repository.
# Within the current container, these directories are cloned by running
# the respective cloning / updating scripts in nested containers, such as
# those located in the _copies/ directory, such as
# _copies/iglibmodules_FRAMEWORK_CUSTOM/
#workspaceprojects
/workspaceprojects
/workspaceprojects1
/workspaceprojects2
#workspaceprojects_all
/workspaceprojects_all
/workspaceprojects_all1
/workspaceprojects_all2