From 4162dde1f6ceccc85f024affa633910123fdf4c2 Mon Sep 17 00:00:00 2001 From: Roger Johansson Date: Mon, 18 Aug 2025 17:51:07 +0200 Subject: [PATCH] refactor: relocate config and context --- src/Proto.Actor/{Configuration => }/ActorSystemConfig.cs | 1 - src/Proto.Actor/{Stashing => Context}/CapturedContext.cs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) rename src/Proto.Actor/{Configuration => }/ActorSystemConfig.cs (99%) rename src/Proto.Actor/{Stashing => Context}/CapturedContext.cs (96%) diff --git a/src/Proto.Actor/Configuration/ActorSystemConfig.cs b/src/Proto.Actor/ActorSystemConfig.cs similarity index 99% rename from src/Proto.Actor/Configuration/ActorSystemConfig.cs rename to src/Proto.Actor/ActorSystemConfig.cs index 933f9ecbfb..368453ef92 100644 --- a/src/Proto.Actor/Configuration/ActorSystemConfig.cs +++ b/src/Proto.Actor/ActorSystemConfig.cs @@ -14,7 +14,6 @@ using System.Text.Json; using System.Text.Json.Serialization; -// ReSharper disable once CheckNamespace namespace Proto; [PublicAPI] diff --git a/src/Proto.Actor/Stashing/CapturedContext.cs b/src/Proto.Actor/Context/CapturedContext.cs similarity index 96% rename from src/Proto.Actor/Stashing/CapturedContext.cs rename to src/Proto.Actor/Context/CapturedContext.cs index f2759ca553..5f66ee4444 100644 --- a/src/Proto.Actor/Stashing/CapturedContext.cs +++ b/src/Proto.Actor/Context/CapturedContext.cs @@ -6,6 +6,7 @@ using System.Threading.Tasks; +// ReSharper disable once CheckNamespace namespace Proto; ///