Akka.Logger.NLog 0.7.1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Akka.Logger.NLog --version 0.7.1
NuGet\Install-Package Akka.Logger.NLog -Version 0.7.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Akka.Logger.NLog" Version="0.7.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Akka.Logger.NLog --version 0.7.1
#r "nuget: Akka.Logger.NLog, 0.7.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Akka.Logger.NLog as a Cake Addin
#addin nuget:?package=Akka.Logger.NLog&version=0.7.1

// Install Akka.Logger.NLog as a Cake Tool
#tool nuget:?package=Akka.Logger.NLog&version=0.7.1

NLog logging adapter for Akka.NET

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (14)

Showing the top 5 NuGet packages that depend on Akka.Logger.NLog:

Package Downloads
Akka.NLog The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

DEPRECATED. Use Akka.Logger.NLog instead. If you're upgrading from a previous version, this package contains instructions on how to upgrade to Akka.Logger.NLog.

Intent.Esb.Server

Intent Esb Server Library

AkkaSim

DES Simulation implementation, with pesimistic central clock

AkkaDotModule.Webnori

Package Description

FAkka.Shared

Package Description

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Akka.Logger.NLog:

Repository Stars
superquanter/quanter
从原来的StockTrader迁移过来
Version Downloads Last updated
1.5.13 16,655 9/27/2023
1.5.0 24,739 3/6/2023
1.4.10 215,288 10/29/2020
1.4.5 34,192 5/4/2020
1.3.5 35,398 1/28/2020
1.3.4 4,938 1/12/2020
1.3.3 143,852 8/1/2018
1.3.1 37,974 5/7/2018
1.3.0-beta 6,578 8/31/2017
1.2.0 62,711 4/25/2017
1.1.2 31,981 10/26/2016
1.1.1 27,289 7/20/2016
1.0.8 14,019 4/28/2016
1.0.7 2,802 4/7/2016
1.0.6 10,653 1/18/2016
1.0.5 3,229 12/3/2015
1.0.4 5,180 8/8/2015
1.0.3 2,893 6/12/2015
1.0.2 2,100 6/3/2015
1.0.1 2,175 4/28/2015
1.0.0 2,003 4/9/2015
1.0.0-dev1504032244 1,618 4/3/2015
0.8.0 2,151 2/12/2015
0.7.1 2,108 12/13/2014
0.7.0 2,412 10/20/2014

__Brand New F# API__. The entire F# API has been updated to give it a more native F# feel while still holding true to the Erlang / Scala conventions used in actor systems. [Read more about the F# API changes](https://github.com/akkadotnet/akka.net/pull/526).
__Multi-Node TestKit (Alpha)__. Not available yet as a NuGet package, but the first pass at the Akka.Remote.TestKit is now available from source, which allow you to test your actor systems running on multiple machines or processes.
A multi-node test looks like this
public class InitialHeartbeatMultiNode1 : InitialHeartbeatSpec
{
}
public class InitialHeartbeatMultiNode2 : InitialHeartbeatSpec
{
}
public class InitialHeartbeatMultiNode3 : InitialHeartbeatSpec
{
}
public abstract class InitialHeartbeatSpec : MultiNodeClusterSpec
The MultiNodeTestRunner looks at this, works out that it needs to create 3 processes to run 3 nodes for the test.
It executes NodeTestRunner in each process to do this passing parameters on the command line. [Read more about the multi-node testkit here](https://github.com/akkadotnet/akka.net/pull/497).
__Breaking Change to the internal api: The `Next` property on `IAtomicCounter<T>` has been changed into the function `Next()`__ This was done as it had side effects, i.e. the value was increased when the getter was called. This makes it very hard to debug as the debugger kept calling the property and causing the value to be increased.
__Akka.Serilog__ `SerilogLogMessageFormatter` has been moved to the namespace `Akka.Logger.Serilog` (it used to be in `Akka.Serilog.Event.Serilog`).
Update your `using` statements from `using Akka.Serilog.Event.Serilog;` to `using Akka.Logger.Serilog;`.
__Breaking Change to the internal api: Changed signatures in the abstract class `SupervisorStrategy`__. The following methods has new signatures: `HandleFailure`, `ProcessFailure`. If you've inherited from `SupervisorStrategy`, `OneForOneStrategy` or `AllForOneStrategy` and overriden the aforementioned methods you need to update their signatures.
__TestProbe can be implicitly casted to ActorRef__. New feature. Tests requring the `ActorRef` of a `TestProbe` can now be simplified:
``` C#
var probe = CreateTestProbe();
var sut = ActorOf<GreeterActor>();
sut.Tell("Akka", probe); // previously probe.Ref was required
probe.ExpectMsg("Hi Akka!");
```
__Bugfix for ConsistentHashableEvenlope__. When using `ConsistentHashableEvenlope` in conjunction with `ConsistentHashRouter`s, `ConsistentHashableEvenlope` now correctly extracts its inner message instead of sending the entire `ConsistentHashableEvenlope` directly to the intended routee.
__Akka.Cluster group routers now work as expected__. New update of Akka.Cluster - group routers now work as expected on cluster deployments. Still working on pool routers. [Read more about Akka.Cluster routers here](https://github.com/akkadotnet/akka.net/pull/489).