Skip to content

Commit

Permalink
Fix for .NET6
Browse files Browse the repository at this point in the history
System.ObjectDisposedException
jchristn/SuperSimpleTcp#108
  • Loading branch information
tinohager committed Jan 19, 2022
1 parent 4e8963d commit 9cac39c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 12 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/dotnet-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET 5.0/6.0
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
5.0.x
6.0.x
dotnet-version: 6.0.x
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Setup .NET 5.0/6.0
- name: Setup .NET 6.0
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
5.0.x
6.0.x
dotnet-version: 6.0.x
- name: Restore dependencies
working-directory: ./src
run: dotnet restore
Expand Down
4 changes: 2 additions & 2 deletions src/Portalum.Zvt.TestUi/Portalum.Zvt.TestUi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@

<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net5.0-windows</TargetFramework>
<TargetFramework>net6.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>Application.ico</ApplicationIcon>

<Version>2.5.4</Version>
<Version>2.6.0</Version>
<Company>Portalum</Company>
</PropertyGroup>

Expand Down
4 changes: 2 additions & 2 deletions src/Portalum.Zvt/Portalum.Zvt.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@

<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>

<Version>2.5.0</Version>
<Version>2.6.0</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="5.0.0" />
<PackageReference Include="SuperSimpleTcp" Version="2.5.0.1" />
<PackageReference Include="SuperSimpleTcp" Version="2.5.0.2" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="5.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 9cac39c

Please sign in to comment.