diff --git a/src/core/Akka.FSharp.Tests/Akka.FSharp.Tests.fsproj b/src/core/Akka.FSharp.Tests/Akka.FSharp.Tests.fsproj index 81b56ea1460..c99d2a62d08 100644 --- a/src/core/Akka.FSharp.Tests/Akka.FSharp.Tests.fsproj +++ b/src/core/Akka.FSharp.Tests/Akka.FSharp.Tests.fsproj @@ -3,7 +3,7 @@ Akka.FSharp.Tests - net452;netstandard2.0 + netstandard2.0 false diff --git a/src/core/Akka.FSharp/Akka.FSharp.fsproj b/src/core/Akka.FSharp/Akka.FSharp.fsproj index 4e9d654a93d..f190b3c4fd3 100644 --- a/src/core/Akka.FSharp/Akka.FSharp.fsproj +++ b/src/core/Akka.FSharp/Akka.FSharp.fsproj @@ -4,7 +4,7 @@ Akka.FSharp F# API support for Akka.NET - net45;netstandard2.0 + netstandard2.0 $(AkkaPackageTags);F#;fsharp true diff --git a/src/core/Akka.Persistence.FSharp/Akka.Persistence.FSharp.fsproj b/src/core/Akka.Persistence.FSharp/Akka.Persistence.FSharp.fsproj index 4538a90a98a..bdc04896585 100644 --- a/src/core/Akka.Persistence.FSharp/Akka.Persistence.FSharp.fsproj +++ b/src/core/Akka.Persistence.FSharp/Akka.Persistence.FSharp.fsproj @@ -4,7 +4,7 @@ Akka.Persistence.FSharp F# API for persistence actors in Akka.NET - net45 + netstandard2.0 akka;actors;actor model;Akka;concurrency;F#;Fsharp;persistence;eventsource true diff --git a/src/core/Akka.Remote.Tests/RemoteConfigSpec.cs b/src/core/Akka.Remote.Tests/RemoteConfigSpec.cs index 6ceb0c72939..a60285213d2 100644 --- a/src/core/Akka.Remote.Tests/RemoteConfigSpec.cs +++ b/src/core/Akka.Remote.Tests/RemoteConfigSpec.cs @@ -167,16 +167,6 @@ public void Remoting_should_contain_correct_hostname_values_in_ReferenceConf() Assert.Equal(IPAddress.Any.ToString(), s.PublicHostname); } - [Fact] - public void Remoting_should_contain_correct_BatchWriter_settings_in_ReferenceConf() - { - var c = RARP.For(Sys).Provider.RemoteSettings.Config.GetConfig("akka.remote.dot-netty.tcp"); - var s = DotNettyTransportSettings.Create(c); - - s.BatchWriterSettings.EnableBatching.Should().BeTrue(); - s.BatchWriterSettings.MaxExplicitFlushes.Should().Be(BatchWriterSettings.DefaultMaxPendingWrites); - } - [Fact] public void Remoting_should_contain_correct_PrimitiveSerializer_settings_in_ReferenceConf() {