Skip to content

Commit

Permalink
Add default address and port - 1.0.1 (#6)
Browse files Browse the repository at this point in the history
* Remove workflow_dispatch from Actions

* Update project file with readme and snupkg format

* Add default address ("localhost") and port (9001)
  • Loading branch information
bparks13 authored Apr 4, 2024
1 parent 6909ea8 commit 16b4f94
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: deploy
on:
workflow_dispatch:
push:
branches:
- 'main'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
name: test_build
on:
workflow_dispatch:
pull_request:
branches:
- 'main'
Expand All @@ -13,7 +12,7 @@ jobs:

build:
uses: ./.github/workflows/build_package.yml
#needs: check_version
needs: check_version
with:
solutionFile: ./OpenEphys.Sockets.Bonsai/OpenEphys.Sockets.Bonsai.sln
nugetDirecory: ./OpenEphys.Sockets.Bonsai/bin/Release
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,22 @@
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<PackageIcon>oe-logo.png</PackageIcon>
<IncludeSymbols Condition="'$(Configuration)'=='Release'">true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageOutputPath>..\bin\$(Configuration)</PackageOutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageTags>Bonsai Rx Open Ephys Sockets Interprocess OpenCV</PackageTags>
<RepositoryUrl>https://github.com/open-ephys/OpenEphys.Sockets.Bonsai</RepositoryUrl>
<RepositoryUrl>https://github.com/open-ephys/OpenEphys.Sockets.Bonsai.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<TargetFramework>net472</TargetFramework>
<Version>1.0.0</Version>
<Version>1.0.1</Version>
<Features>strict</Features>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
<None Include="oe-logo.png">
<Pack>True</Pack>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ namespace OpenEphys.Sockets.Bonsai
{
public class TcpServerConfiguration : TransportConfiguration
{
public string Address;
public int Port;
public string Address = "localhost";
public int Port = 9001;

internal override ITransport CreateTransport()
{
Expand Down

0 comments on commit 16b4f94

Please sign in to comment.