Skip to content

Commit 29e18a3

Browse files
committed
F Added NET8 target
1 parent 8f22a39 commit 29e18a3

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/SharpRTSPClient/SharpRTSPClient.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>
@@ -13,7 +13,7 @@
1313
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1414
<Nullable>disable</Nullable>
1515
<Title>$(ProjectName)</Title>
16-
<Version>0.0.4</Version>
16+
<Version>0.0.5</Version>
1717
<Authors>Lukas Volf</Authors>
1818
<Copyright>MIT</Copyright>
1919
<PackageProjectUrl>https://github.com/jimm98y/SharpRealTimeStreaming</PackageProjectUrl>

src/SharpRTSPServer/RTSPServer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,11 +185,11 @@ private void AcceptConnection()
185185
}
186186
catch (SocketException eex)
187187
{
188-
_logger.LogWarning("Got an error listening, I have to handle the stopping which also throw an error", eex);
188+
_logger.LogWarning("Got an error listening, I have to handle the stopping which also throw an error: {eex}", eex);
189189
}
190190
catch (Exception ex)
191191
{
192-
_logger.LogError("Got an error listening...", ex);
192+
_logger.LogError("Got an error listening... {ex}", ex);
193193
throw;
194194
}
195195
}

src/SharpRTSPServer/SharpRTSPServer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>
@@ -13,7 +13,7 @@
1313
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
1414
<Nullable>disable</Nullable>
1515
<Title>$(ProjectName)</Title>
16-
<Version>0.0.4</Version>
16+
<Version>0.0.5</Version>
1717
<Authors>Lukas Volf</Authors>
1818
<Copyright>MIT</Copyright>
1919
<PackageProjectUrl>https://github.com/jimm98y/SharpRealTimeStreaming</PackageProjectUrl>

0 commit comments

Comments
 (0)