Aaron Stannard

Results 656 comments of Aaron Stannard

After looking at xUnit's fix, I'm not sure I want to do that - moving everyone over to an ancient version of Roslyn because pre-SDK .NET Framework projects don't support...

@lamereactor > I don't know if I'll invest in a migration to the SDK-style project format, as I'm not fully aware of the impacts, and I'm not even sure it's...

@kimbyungeun have you tried migrating your project to the new MSBuild15 format?

Looks like there isn't going to be an official MSFT tooling solution to this problem any time soon https://github.com/dotnet/sdk/issues/41352#issuecomment-2358804148

I put this on Petabridge's Q4 OKRs - we're going to have this fixed before the end of the year.

Going to mark this as closed again once Akka.Analyzers v0.3.0 gets merged in

One design idea I had to fix this code is to do this: ```csharp internal static ReplicatorSettings GetReplicatorSettings(ClusterShardingSettings shardingSettings) { var config = Context.System.Settings.Config.GetConfig("akka.cluster.sharding.distributed-data") .WithFallback(Context.System.Settings.Config.GetConfig("akka.cluster.distributed-data")); var configuredSettings = ReplicatorSettings.Create(config); var...