Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump Akka.NET to 1.4.49 and NLog to 5.1.2 #133

Merged
merged 4 commits into from Mar 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -202,4 +202,5 @@ FakesAssemblies/
tools/
build/
.nuget/
.dotnet/
.dotnet/
.idea/
2 changes: 1 addition & 1 deletion src/Akka.Logger.NLog.Tests/Akka.Logger.NLog.Tests.csproj
Expand Up @@ -8,7 +8,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitRunnerVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="Akka.TestKit.Xunit2" Version="1.4.21" />
<PackageReference Include="Akka.TestKit.Xunit2" Version="$(AkkaVersion)" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 3 additions & 3 deletions src/Akka.Logger.NLog/Akka.Logger.NLog.csproj
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\common.props" />
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<TargetFramework>netstandard2.0</TargetFramework>
<Description>NLog logging adapter for Akka.NET.</Description>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Akka" Version="1.4.10" />
<PackageReference Include="NLog" Version="4.7.7" />
<PackageReference Include="Akka" Version="$(AkkaVersion)" />
<PackageReference Include="NLog" Version="$(NLogVersion)" />
</ItemGroup>
</Project>
4 changes: 3 additions & 1 deletion src/common.props
Expand Up @@ -17,6 +17,8 @@
<NetTestVersion>net7.0</NetTestVersion>
<XunitVersion>2.4.2</XunitVersion>
<XunitRunnerVersion>2.4.5</XunitRunnerVersion>
<TestSdkVersion>15.9.0</TestSdkVersion>
<TestSdkVersion>17.5.0</TestSdkVersion>
<AkkaVersion>1.4.49</AkkaVersion>
<NLogVersion>5.1.2</NLogVersion>
</PropertyGroup>
</Project>