Skip to content

Commit adcada8

Browse files
committed
Initial Commit
1 parent 817a79f commit adcada8

File tree

6 files changed

+81
-0
lines changed

6 files changed

+81
-0
lines changed

.gitignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
build
2+
*.csv
3+
node_modules
4+
bin
5+
obj
6+
images*
7+
Packages
8+
*.yml
9+
*.exe
10+
*.exe.settings
11+
WIP
12+
bonsai/Workflows/*.csv
13+
bonsai/Workflows/raw.csv

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 aspaNeuro
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

bonsai/Bonsai.config

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<PackageConfiguration xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
3+
<Packages>
4+
<Package id="Bonsai" version="2.6.2" />
5+
<Package id="Bonsai.Core" version="2.6.0" />
6+
<Package id="Bonsai.Design" version="2.6.1" />
7+
<Package id="Bonsai.Editor" version="2.6.2" />
8+
<Package id="Rx-Core" version="2.2.5" />
9+
<Package id="Rx-Interfaces" version="2.2.5" />
10+
<Package id="Rx-Linq" version="2.2.5" />
11+
<Package id="Rx-PlatformServices" version="2.2.5" />
12+
<Package id="SvgNet" version="2.0.1" />
13+
</Packages>
14+
<AssemblyReferences>
15+
<AssemblyReference assemblyName="Bonsai" />
16+
<AssemblyReference assemblyName="Bonsai.Core" />
17+
<AssemblyReference assemblyName="Bonsai.Design" />
18+
<AssemblyReference assemblyName="Bonsai.Editor" />
19+
</AssemblyReferences>
20+
<AssemblyLocations>
21+
<AssemblyLocation assemblyName="Bonsai" processorArchitecture="MSIL" location="Packages\Bonsai.2.6.2\lib\net472\Bonsai.exe" />
22+
<AssemblyLocation assemblyName="Bonsai.Core" processorArchitecture="MSIL" location="Packages\Bonsai.Core.2.6.0\lib\net462\Bonsai.Core.dll" />
23+
<AssemblyLocation assemblyName="Bonsai.Design" processorArchitecture="MSIL" location="Packages\Bonsai.Design.2.6.1\lib\net462\Bonsai.Design.dll" />
24+
<AssemblyLocation assemblyName="Bonsai.Editor" processorArchitecture="MSIL" location="Packages\Bonsai.Editor.2.6.2\lib\net462\Bonsai.Editor.dll" />
25+
<AssemblyLocation assemblyName="SVG" processorArchitecture="MSIL" location="Packages\SvgNet.2.0.1\lib\net40\SVG.dll" />
26+
<AssemblyLocation assemblyName="System.Reactive.Core" processorArchitecture="MSIL" location="Packages\Rx-Core.2.2.5\lib\net45\System.Reactive.Core.dll" />
27+
<AssemblyLocation assemblyName="System.Reactive.Interfaces" processorArchitecture="MSIL" location="Packages\Rx-Interfaces.2.2.5\lib\net45\System.Reactive.Interfaces.dll" />
28+
<AssemblyLocation assemblyName="System.Reactive.Linq" processorArchitecture="MSIL" location="Packages\Rx-Linq.2.2.5\lib\net45\System.Reactive.Linq.dll" />
29+
<AssemblyLocation assemblyName="System.Reactive.PlatformServices" processorArchitecture="MSIL" location="Packages\Rx-PlatformServices.2.2.5\lib\net45\System.Reactive.PlatformServices.dll" />
30+
</AssemblyLocations>
31+
<LibraryFolders />
32+
</PackageConfiguration>

bonsai/NuGet.Config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<configuration>
3+
<packageSources>
4+
<add key="Gallery" value="Gallery" />
5+
<add key="Bonsai Packages" value="https://www.myget.org/F/bonsai/api/v3/index.json" />
6+
<add key="Community Packages" value="https://www.myget.org/F/bonsai-community/api/v3/index.json" />
7+
</packageSources>
8+
</configuration>

bonsai/setup.cmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
powershell -ExecutionPolicy Bypass -File .\setup.ps1

bonsai/setup.ps1

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
if (!(Test-Path "./Bonsai.exe")) {
2+
Invoke-WebRequest "https://github.com/bonsai-rx/bonsai/releases/download/2.6.2/Bonsai.zip" -OutFile "temp.zip"
3+
Expand-Archive "temp.zip" -DestinationPath "." -Force
4+
Remove-Item -Path "temp.zip"
5+
}
6+
& .\Bonsai.exe --no-editor

0 commit comments

Comments
 (0)