mirror of
https://github.com/AlexMacocian/SystemExtensions.git
synced 2026-07-24 12:06:27 +00:00
Move configuration namespace to system
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class DefaultOptionsManager : IOptionsManager
|
||||
{
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public interface ILiveOptions<T> : IOptions<T>
|
||||
where T : class
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public interface ILiveUpdateableOptions<T> : ILiveOptions<T>, IUpdateableOptions<T>
|
||||
where T : class
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public interface IOptionsManager
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using Microsoft.Extensions.Options;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public interface IUpdateableOptions<out T> : IOptions<T>
|
||||
where T : class
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using Slim.Resolvers;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class LiveOptionsResolver : IDependencyResolver
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using Slim.Resolvers;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class LiveUpdateableOptionsResolver : IDependencyResolver
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using System.Extensions;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class LiveUpdateableOptionsWrapper<T> : ILiveUpdateableOptions<T>
|
||||
where T : class
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
using Microsoft.Extensions.Options;
|
||||
using Slim.Resolvers;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class OptionsResolver : IDependencyResolver
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using Slim.Resolvers;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class UpdateableOptionsResolver : IDependencyResolver
|
||||
{
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
using System.Extensions;
|
||||
|
||||
namespace System.Extensions.Configuration
|
||||
namespace System.Configuration
|
||||
{
|
||||
public sealed class UpdateableOptionsWrapper<T> : IUpdateableOptions<T>
|
||||
where T : class
|
||||
|
||||
Reference in New Issue
Block a user