Skip to content
This repository was archived by the owner on Apr 15, 2026. It is now read-only.

Commit f3d5f5b

Browse files
committed
Updated dependencies and upgraded to .net 5.0
1 parent 9916f33 commit f3d5f5b

2 files changed

Lines changed: 6 additions & 8 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ From this hub it gets forwarded to its registered SignalR clients, e.g. to a Jav
1111

1212
The main use case for MUnique.Log4Net.CoreSignalR is building a log viewer on your website that gives easy visibility to diagnostic information and errors logged on the server.
1313

14-
## .NET Standard / Core
15-
This project uses the new [SignalR](https://github.com/aspnet/SignalR) library for .NET Standard/Core. It requires .NET Standard 2.0, because SignalR requires it as well.
14+
## .NET 5
15+
This project uses the new [SignalR](https://github.com/aspnet/SignalR) library for .NET 5.
1616
You can find a similar project for the regular version of the .net framework [here](https://github.com/MUnique/log4net.SignalR).
1717

1818
## Getting started

src/MUnique.Log4Net.CoreSignalR.csproj

Lines changed: 4 additions & 6 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.1</TargetFramework>
4+
<TargetFramework>net50</TargetFramework>
55
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
66
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
77
<PackageId>munique.log4net.coresignalr</PackageId>
@@ -10,9 +10,7 @@
1010
<PackageProjectUrl>https://github.com/MUnique/Log4Net.CoreSignalR</PackageProjectUrl>
1111
<PackageTags>log4net signalr dotnetcore netstandard</PackageTags>
1212
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
13-
<VersionPrefix>1.0.0</VersionPrefix>
14-
<VersionSuffix>beta6</VersionSuffix>
15-
<Version>1.0.0-beta6</Version>
13+
<Version>1.0.1</Version>
1614
<Company>MUnique</Company>
1715
<Description>MUnique.Log4Net.CoreSignalR provides a Log4Net Appender which forwards Log4Net log events to a SignalR hub, which is also provided by this package.
1816
The main use case for MUnique.Log4Net.CoreSignalR is building a log viewer on your website that gives easy visibility to diagnostic information and errors logged on the server.</Description>
@@ -36,9 +34,9 @@ The main use case for MUnique.Log4Net.CoreSignalR is building a log viewer on yo
3634
</ItemGroup>
3735

3836
<ItemGroup>
39-
<PackageReference Include="log4net" Version="2.0.8" />
37+
<PackageReference Include="log4net" Version="2.0.12" />
4038
<PackageReference Include="Microsoft.AspNetCore.SignalR" Version="1.1.0" />
41-
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="3.0.0" />
39+
<PackageReference Include="Microsoft.AspNetCore.SignalR.Client" Version="5.0.3" />
4240
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
4341
<PrivateAssets>all</PrivateAssets>
4442
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)