One of the last major cleanups. All NadekoBot.Core.* namespaces renamed to NadekoBot.*

This commit is contained in:
Kwoth
2021-06-20 13:03:00 +02:00
parent 44fdd4ff23
commit 49f9b96755
451 changed files with 19253 additions and 19287 deletions

View File

@@ -2,11 +2,11 @@
using System.Data.Common;
using System.Globalization;
using Microsoft.EntityFrameworkCore;
using NadekoBot.Core.Common.Configs;
using NadekoBot.Common.Configs;
using Serilog;
using SixLabors.ImageSharp.PixelFormats;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
public sealed class BotConfigMigrator : IConfigMigrator
{

View File

@@ -1,10 +1,10 @@
using System;
using Discord;
using NadekoBot.Core.Common;
using NadekoBot.Core.Common.Configs;
using NadekoBot.Common;
using NadekoBot.Common.Configs;
using SixLabors.ImageSharp.PixelFormats;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
/// <summary>
/// Settings service for bot-wide configuration.

View File

@@ -1,7 +1,7 @@
using System.Globalization;
using SixLabors.ImageSharp.PixelFormats;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
/// <summary>
/// Custom setting value parsers for types which don't have them by default

View File

@@ -7,13 +7,13 @@ using System.Reflection;
using System.Text.Json;
using System.Threading.Tasks;
using NadekoBot.Common.Yml;
using NadekoBot.Core.Common;
using NadekoBot.Core.Common.Configs;
using NadekoBot.Core.Common.JsonConverters;
using Rgba32Converter = NadekoBot.Core.Common.JsonConverters.Rgba32Converter;
using CultureInfoConverter = NadekoBot.Core.Common.JsonConverters.CultureInfoConverter;
using NadekoBot.Common;
using NadekoBot.Common.Configs;
using NadekoBot.Common.JsonConverters;
using Rgba32Converter = NadekoBot.Common.JsonConverters.Rgba32Converter;
using CultureInfoConverter = NadekoBot.Common.JsonConverters.CultureInfoConverter;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
/// <summary>
/// Base service for all settings services

View File

@@ -5,7 +5,7 @@ using NadekoBot.Modules.Gambling.Common;
using NadekoBot.Modules.Gambling.Services;
using Serilog;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
public sealed class GamblingConfigMigrator : IConfigMigrator
{

View File

@@ -1,4 +1,4 @@
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
public interface IConfigMigrator
{

View File

@@ -1,6 +1,6 @@
using System.Collections.Generic;
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
/// <summary>
/// Interface that all services which deal with configs should implement

View File

@@ -1,4 +1,4 @@
namespace NadekoBot.Core.Services
namespace NadekoBot.Services
{
/// <summary>
/// Delegate which describes a parser which can convert string input into given data type