Skip to content

Commit dfbc2bc

Browse files
committed
Final release fixes
1 parent a4fa2db commit dfbc2bc

File tree

7 files changed

+6
-9
lines changed

7 files changed

+6
-9
lines changed

Examples/NetworkTestClient/NetworkTestClient.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
</ItemGroup>
103103
<ItemGroup>
104104
<PackageReference Include="Network">
105-
<Version>5.0.0</Version>
105+
<Version>5.1.0.4-rc</Version>
106106
</PackageReference>
107107
</ItemGroup>
108108
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

Examples/NetworkTestClient/RSAExample.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ public async void Demo()
5959
//4. Register what happens if we get a connection
6060
container.ConnectionEstablished += (connection, type) =>
6161
{
62-
connection.EnableLogging = true;
6362
Console.WriteLine($"{type.ToString()} Connection established");
6463
//5. Register what happens if we receive a packet of type "CalculationResponse"
6564
connection.RegisterPacketHandler<CalculationResponse>((response, con) => Console.WriteLine($"Answer received {response.Result}"), this);

Examples/NetworkTestServer/NetworkTestServer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
</ItemGroup>
9999
<ItemGroup>
100100
<PackageReference Include="Network">
101-
<Version>5.0.0</Version>
101+
<Version>5.1.0.4-rc</Version>
102102
</PackageReference>
103103
</ItemGroup>
104104
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

Examples/NetworkTestServer/SecureServerExample.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ internal void Demo()
8686
/// <param name="connection">The connection we got. (TCP or UDP)</param>
8787
private void connectionEstablished(Connection connection, ConnectionType type)
8888
{
89-
connection.EnableLogging = true;
9089
Console.WriteLine($"{secureServerConnectionContainer.Count} {connection.GetType()} connected on port {connection.IPRemoteEndPoint.Port}");
9190

9291
//3. Register packet listeners.

Examples/TestServerClientPackets/TestServerClientPackets.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</ItemGroup>
7979
<ItemGroup>
8080
<PackageReference Include="Network">
81-
<Version>5.0.0</Version>
81+
<Version>5.1.0.4-rc</Version>
8282
</PackageReference>
8383
</ItemGroup>
8484
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

Network/.vs/Network/v15/.suo

0 Bytes
Binary file not shown.

Network/Network.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
77
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
88
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
9-
<Version>5.1.0.4-rc</Version>
9+
<Version>5.1.0.5</Version>
1010
<Authors>Thomas Christof</Authors>
1111
<Company>Indie-Dev</Company>
1212
<Description>Network library supporting: TCP, UDP, Bluetooth, RSA, events and objects. Fast and simple, with only 48bit overhead per packet. Send and receive packets with async operations.
1313

14-
1514
- .NET 4.6
1615
- .NET Standard 2.0 (No Bluetooth support)
1716

@@ -30,8 +29,8 @@ Fork me: https://github.com/Toemsel/Network</Description>
3029
<PackageTags>TCP, UDP, Bluetooth, Network, Events, Async, RSA</PackageTags>
3130
<PackageReleaseNotes>RSA support for .NET Standard 2.0</PackageReleaseNotes>
3231
<NeutralLanguage>en-US</NeutralLanguage>
33-
<AssemblyVersion>5.1.0.4</AssemblyVersion>
34-
<FileVersion>5.1.0.4</FileVersion>
32+
<AssemblyVersion>5.1.0.5</AssemblyVersion>
33+
<FileVersion>5.1.0.5</FileVersion>
3534
</PropertyGroup>
3635
<ItemGroup>
3736
<Compile Remove="packages\**" />

0 commit comments

Comments
 (0)