Skip to content

Commit 5112b55

Browse files
committed
Merge branch 'release/v0.3.2'
2 parents 9516bfd + ee108e0 commit 5112b55

Some content is hidden

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

46 files changed

+2702
-3
lines changed

.gitignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# SDF files
2+
*.sdf
3+
4+
# Build artefacts
5+
*.o
6+
7+
# PyCharm projects
8+
.idea/
9+
10+
# compiled code
11+
*.py[cod]
12+
13+
# C extensions
14+
*.so
15+
16+
# Packages
17+
*.egg
18+
*.egg-info
19+
dist
20+
build
21+
eggs
22+
parts
23+
bin
24+
var
25+
sdist
26+
develop-eggs
27+
.installed.cfg
28+
lib
29+
lib64
30+
__pycache__
31+
32+
# Installer logs
33+
pip-log.txt
34+
35+
# Unit test / coverage reports
36+
.coverage
37+
.tox
38+
nosetests.xml
39+
40+
# Translations
41+
*.mo
42+
43+
# data files
44+
*.h5
45+
*.mat
46+
47+
# temp files
48+
~*
49+
50+
# Eclipse user settings
51+
.settings/
52+
53+
# PDFs
54+
*.pdf
55+
56+
# auto generated manifest
57+
MANIFEST
58+
59+
# automation scripts
60+
# *.bat
61+
62+
# test file
63+
!IntegerNetwork1.mat

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "C/NDTable"]
2+
path = C/NDTable
3+
url = https://github.com/ScientificDataFormat/NDTable.git
4+
branch = develop

C/NDTable

Submodule NDTable added at 3850fda

C/VisualStudio/.gitignore

Lines changed: 190 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,190 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
4+
# User-specific files
5+
*.suo
6+
*.user
7+
*.userosscache
8+
*.sln.docstates
9+
10+
# Generated Files
11+
GeneratedFiles/
12+
13+
# Build results
14+
[Dd]ebug/
15+
[Dd]ebugPublic/
16+
[Rr]elease/
17+
[Rr]eleases/
18+
x64/
19+
x86/
20+
build/
21+
bld/
22+
[Bb]in/
23+
[Oo]bj/
24+
25+
# Roslyn cache directories
26+
*.ide/
27+
28+
# MSTest test Results
29+
[Tt]est[Rr]esult*/
30+
[Bb]uild[Ll]og.*
31+
32+
#NUNIT
33+
*.VisualState.xml
34+
TestResult.xml
35+
36+
# Build Results of an ATL Project
37+
[Dd]ebugPS/
38+
[Rr]eleasePS/
39+
dlldata.c
40+
41+
*_i.c
42+
*_p.c
43+
*_i.h
44+
*.ilk
45+
*.meta
46+
*.obj
47+
*.pch
48+
*.pdb
49+
*.pgc
50+
*.pgd
51+
*.rsp
52+
*.sbr
53+
*.tlb
54+
*.tli
55+
*.tlh
56+
*.tmp
57+
*.tmp_proj
58+
*.log
59+
*.vspscc
60+
*.vssscc
61+
.builds
62+
*.pidb
63+
*.svclog
64+
*.scc
65+
66+
# Chutzpah Test files
67+
_Chutzpah*
68+
69+
# Visual C++ cache files
70+
ipch/
71+
*.aps
72+
*.ncb
73+
*.opensdf
74+
*.sdf
75+
*.cachefile
76+
*.VC.db
77+
*.VC.opendb
78+
79+
# Visual Studio profiler
80+
*.psess
81+
*.vsp
82+
*.vspx
83+
84+
# TFS 2012 Local Workspace
85+
$tf/
86+
87+
# Guidance Automation Toolkit
88+
*.gpState
89+
90+
# ReSharper is a .NET coding add-in
91+
_ReSharper*/
92+
*.[Rr]e[Ss]harper
93+
*.DotSettings.user
94+
95+
# JustCode is a .NET coding addin-in
96+
.JustCode
97+
98+
# TeamCity is a build add-in
99+
_TeamCity*
100+
101+
# DotCover is a Code Coverage Tool
102+
*.dotCover
103+
104+
# NCrunch
105+
_NCrunch_*
106+
.*crunch*.local.xml
107+
108+
# MightyMoose
109+
*.mm.*
110+
AutoTest.Net/
111+
112+
# Web workbench (sass)
113+
.sass-cache/
114+
115+
# Installshield output folder
116+
[Ee]xpress/
117+
118+
# DocProject is a documentation generator add-in
119+
DocProject/buildhelp/
120+
DocProject/Help/*.HxT
121+
DocProject/Help/*.HxC
122+
DocProject/Help/*.hhc
123+
DocProject/Help/*.hhk
124+
DocProject/Help/*.hhp
125+
DocProject/Help/Html2
126+
DocProject/Help/html
127+
128+
# Click-Once directory
129+
publish/
130+
131+
# Publish Web Output
132+
*.[Pp]ublish.xml
133+
*.azurePubxml
134+
# TODO: Comment the next line if you want to checkin your web deploy settings
135+
# but database connection strings (with potential passwords) will be unencrypted
136+
*.pubxml
137+
*.publishproj
138+
139+
# NuGet Packages
140+
*.nupkg
141+
# The packages folder can be ignored because of Package Restore
142+
**/packages/*
143+
# except build/, which is used as an MSBuild target.
144+
!**/packages/build/
145+
# If using the old MSBuild-Integrated Package Restore, uncomment this:
146+
#!**/packages/repositories.config
147+
148+
# Windows Azure Build Output
149+
csx/
150+
*.build.csdef
151+
152+
# Windows Store app package directory
153+
AppPackages/
154+
155+
# Others
156+
sql/
157+
*.Cache
158+
ClientBin/
159+
[Ss]tyle[Cc]op.*
160+
~$*
161+
*~
162+
*.dbmdl
163+
*.dbproj.schemaview
164+
*.pfx
165+
*.publishsettings
166+
node_modules/
167+
bower_components/
168+
169+
# RIA/Silverlight projects
170+
Generated_Code/
171+
172+
# Backup & report files from converting an old project file
173+
# to a newer Visual Studio version. Backup files are not needed,
174+
# because we have git ;-)
175+
_UpgradeReport_Files/
176+
Backup*/
177+
UpgradeLog*.XML
178+
UpgradeLog*.htm
179+
180+
# SQL Server files
181+
*.mdf
182+
*.ldf
183+
184+
# Business Intelligence projects
185+
*.rdl.data
186+
*.bim.layout
187+
*.bim_*.settings
188+
189+
# Microsoft Fakes
190+
FakesAssemblies/

0 commit comments

Comments
 (0)