From 82dabaabcbc4be3857505c11dd13617926d97b01 Mon Sep 17 00:00:00 2001 From: feyris-tan <4116042+feyris-tan@users.noreply.github.com> Date: Wed, 21 Jan 2026 19:08:56 +0100 Subject: [PATCH] Voile.Common is now Voile.Patchouli --- .gitignore | 9 +++++ .../DemoAssets/AutoconfigSource.cs | 0 .../DemoAssets/AutoconfigurableObject.cs | 0 .../Voile.Patchouli.Tests.csproj | 33 +++++++++++++++++++ .../Configuration/IConfigurationSource.cs | 0 .../DRM/NeedsEntitlementAttribute.cs | 0 .../Logging/IVoileLogSink.cs | 0 .../Logging/Sinks/VoileConsoleSink.cs | 0 .../Logging/VoileLogLevel.cs | 0 .../Logging/VoileLogManager.cs | 0 .../Logging/VoileLogMessage.cs | 0 .../Logging/VoileLogger.cs | 0 .../Reflection/AutoconfigurableAttribute.cs | 0 .../Reflection/Autoconfigurer.cs | 0 .../Reflection/IncompleteAttribute.cs | 0 .../Reflection/VoilePluginAttribute.cs | 0 Voile.Patchouli/Voile.Patchouli.csproj | 9 +++++ .../VoileException.cs | 0 .../Voile.Storage.Oracle.csproj | 4 --- .../Voile.Storage.Postgresql.csproj | 4 --- .../Voile.Storage.SqlServer.csproj | 4 --- Voile.slnx | 8 +++-- 22 files changed, 56 insertions(+), 15 deletions(-) rename {Voile.Common.Tests => Voile.Patchouli.Tests}/DemoAssets/AutoconfigSource.cs (100%) rename {Voile.Common.Tests => Voile.Patchouli.Tests}/DemoAssets/AutoconfigurableObject.cs (100%) create mode 100644 Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj rename {Voile.Common => Voile.Patchouli}/Configuration/IConfigurationSource.cs (100%) rename {Voile.Common => Voile.Patchouli}/DRM/NeedsEntitlementAttribute.cs (100%) rename {Voile.Common => Voile.Patchouli}/Logging/IVoileLogSink.cs (100%) rename {Voile.Common => Voile.Patchouli}/Logging/Sinks/VoileConsoleSink.cs (100%) rename {Voile.Common => Voile.Patchouli}/Logging/VoileLogLevel.cs (100%) rename {Voile.Common => Voile.Patchouli}/Logging/VoileLogManager.cs (100%) rename {Voile.Common => Voile.Patchouli}/Logging/VoileLogMessage.cs (100%) rename {Voile.Common => Voile.Patchouli}/Logging/VoileLogger.cs (100%) rename {Voile.Common => Voile.Patchouli}/Reflection/AutoconfigurableAttribute.cs (100%) rename {Voile.Common => Voile.Patchouli}/Reflection/Autoconfigurer.cs (100%) rename {Voile.Common => Voile.Patchouli}/Reflection/IncompleteAttribute.cs (100%) rename {Voile.Common => Voile.Patchouli}/Reflection/VoilePluginAttribute.cs (100%) create mode 100644 Voile.Patchouli/Voile.Patchouli.csproj rename {Voile.Common => Voile.Patchouli}/VoileException.cs (100%) diff --git a/.gitignore b/.gitignore index cabb36a..db09243 100644 --- a/.gitignore +++ b/.gitignore @@ -27,3 +27,12 @@ /Voile.Common.Tests/bin /Voile.Common.Tests/obj /.idea +/Voile.Patchouli.Tests/bin/Debug/net8.0 +/Voile.Patchouli.Tests/obj/Debug/net8.0 +/Voile.Patchouli.Tests/obj +/Voile.Patchouli/bin/Debug/net8.0 +/Voile.Patchouli/obj/Debug/net8.0 +/Voile.Patchouli/obj +/Voile.Storage.Oracle/bin/Debug/net8.0 +/Voile.Storage.Postgresql/bin/Debug/net8.0 +/Voile.Storage.SqlServer/bin/Debug/net8.0 diff --git a/Voile.Common.Tests/DemoAssets/AutoconfigSource.cs b/Voile.Patchouli.Tests/DemoAssets/AutoconfigSource.cs similarity index 100% rename from Voile.Common.Tests/DemoAssets/AutoconfigSource.cs rename to Voile.Patchouli.Tests/DemoAssets/AutoconfigSource.cs diff --git a/Voile.Common.Tests/DemoAssets/AutoconfigurableObject.cs b/Voile.Patchouli.Tests/DemoAssets/AutoconfigurableObject.cs similarity index 100% rename from Voile.Common.Tests/DemoAssets/AutoconfigurableObject.cs rename to Voile.Patchouli.Tests/DemoAssets/AutoconfigurableObject.cs diff --git a/Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj b/Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj new file mode 100644 index 0000000..d85387d --- /dev/null +++ b/Voile.Patchouli.Tests/Voile.Patchouli.Tests.csproj @@ -0,0 +1,33 @@ + + + + net8.0 + latest + enable + enable + true + Exe + true + + true + + + + + + + + + + + + + + + + + + diff --git a/Voile.Common/Configuration/IConfigurationSource.cs b/Voile.Patchouli/Configuration/IConfigurationSource.cs similarity index 100% rename from Voile.Common/Configuration/IConfigurationSource.cs rename to Voile.Patchouli/Configuration/IConfigurationSource.cs diff --git a/Voile.Common/DRM/NeedsEntitlementAttribute.cs b/Voile.Patchouli/DRM/NeedsEntitlementAttribute.cs similarity index 100% rename from Voile.Common/DRM/NeedsEntitlementAttribute.cs rename to Voile.Patchouli/DRM/NeedsEntitlementAttribute.cs diff --git a/Voile.Common/Logging/IVoileLogSink.cs b/Voile.Patchouli/Logging/IVoileLogSink.cs similarity index 100% rename from Voile.Common/Logging/IVoileLogSink.cs rename to Voile.Patchouli/Logging/IVoileLogSink.cs diff --git a/Voile.Common/Logging/Sinks/VoileConsoleSink.cs b/Voile.Patchouli/Logging/Sinks/VoileConsoleSink.cs similarity index 100% rename from Voile.Common/Logging/Sinks/VoileConsoleSink.cs rename to Voile.Patchouli/Logging/Sinks/VoileConsoleSink.cs diff --git a/Voile.Common/Logging/VoileLogLevel.cs b/Voile.Patchouli/Logging/VoileLogLevel.cs similarity index 100% rename from Voile.Common/Logging/VoileLogLevel.cs rename to Voile.Patchouli/Logging/VoileLogLevel.cs diff --git a/Voile.Common/Logging/VoileLogManager.cs b/Voile.Patchouli/Logging/VoileLogManager.cs similarity index 100% rename from Voile.Common/Logging/VoileLogManager.cs rename to Voile.Patchouli/Logging/VoileLogManager.cs diff --git a/Voile.Common/Logging/VoileLogMessage.cs b/Voile.Patchouli/Logging/VoileLogMessage.cs similarity index 100% rename from Voile.Common/Logging/VoileLogMessage.cs rename to Voile.Patchouli/Logging/VoileLogMessage.cs diff --git a/Voile.Common/Logging/VoileLogger.cs b/Voile.Patchouli/Logging/VoileLogger.cs similarity index 100% rename from Voile.Common/Logging/VoileLogger.cs rename to Voile.Patchouli/Logging/VoileLogger.cs diff --git a/Voile.Common/Reflection/AutoconfigurableAttribute.cs b/Voile.Patchouli/Reflection/AutoconfigurableAttribute.cs similarity index 100% rename from Voile.Common/Reflection/AutoconfigurableAttribute.cs rename to Voile.Patchouli/Reflection/AutoconfigurableAttribute.cs diff --git a/Voile.Common/Reflection/Autoconfigurer.cs b/Voile.Patchouli/Reflection/Autoconfigurer.cs similarity index 100% rename from Voile.Common/Reflection/Autoconfigurer.cs rename to Voile.Patchouli/Reflection/Autoconfigurer.cs diff --git a/Voile.Common/Reflection/IncompleteAttribute.cs b/Voile.Patchouli/Reflection/IncompleteAttribute.cs similarity index 100% rename from Voile.Common/Reflection/IncompleteAttribute.cs rename to Voile.Patchouli/Reflection/IncompleteAttribute.cs diff --git a/Voile.Common/Reflection/VoilePluginAttribute.cs b/Voile.Patchouli/Reflection/VoilePluginAttribute.cs similarity index 100% rename from Voile.Common/Reflection/VoilePluginAttribute.cs rename to Voile.Patchouli/Reflection/VoilePluginAttribute.cs diff --git a/Voile.Patchouli/Voile.Patchouli.csproj b/Voile.Patchouli/Voile.Patchouli.csproj new file mode 100644 index 0000000..fa71b7a --- /dev/null +++ b/Voile.Patchouli/Voile.Patchouli.csproj @@ -0,0 +1,9 @@ + + + + net8.0 + enable + enable + + + diff --git a/Voile.Common/VoileException.cs b/Voile.Patchouli/VoileException.cs similarity index 100% rename from Voile.Common/VoileException.cs rename to Voile.Patchouli/VoileException.cs diff --git a/Voile.Storage.Oracle/Voile.Storage.Oracle.csproj b/Voile.Storage.Oracle/Voile.Storage.Oracle.csproj index 7d52b5f..fa71b7a 100644 --- a/Voile.Storage.Oracle/Voile.Storage.Oracle.csproj +++ b/Voile.Storage.Oracle/Voile.Storage.Oracle.csproj @@ -6,8 +6,4 @@ enable - - - - diff --git a/Voile.Storage.Postgresql/Voile.Storage.Postgresql.csproj b/Voile.Storage.Postgresql/Voile.Storage.Postgresql.csproj index 7d52b5f..fa71b7a 100644 --- a/Voile.Storage.Postgresql/Voile.Storage.Postgresql.csproj +++ b/Voile.Storage.Postgresql/Voile.Storage.Postgresql.csproj @@ -6,8 +6,4 @@ enable - - - - diff --git a/Voile.Storage.SqlServer/Voile.Storage.SqlServer.csproj b/Voile.Storage.SqlServer/Voile.Storage.SqlServer.csproj index 7d52b5f..fa71b7a 100644 --- a/Voile.Storage.SqlServer/Voile.Storage.SqlServer.csproj +++ b/Voile.Storage.SqlServer/Voile.Storage.SqlServer.csproj @@ -6,8 +6,4 @@ enable - - - - diff --git a/Voile.slnx b/Voile.slnx index 3cf0ff0..bb320f1 100644 --- a/Voile.slnx +++ b/Voile.slnx @@ -1,8 +1,10 @@ - + + + - - + +