Skip to content

Commit

Permalink
[Bot -> All] Rename SammBot.Bot to SammBot.
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogFeelings committed Nov 21, 2024
1 parent bcd74c1 commit 26cc76a
Show file tree
Hide file tree
Showing 42 changed files with 70 additions and 70 deletions.
2 changes: 1 addition & 1 deletion SammBot.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31717.71
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SammBot", "Source\SammBot.Bot\SammBot.Bot.csproj", "{5C9C0C3D-EE4A-4699-BC0D-5B1256EFC97C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SammBot", "Source\SammBot\SammBot.csproj", "{5C9C0C3D-EE4A-4699-BC0D-5B1256EFC97C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SammBot.Library", "Source\SammBot.Library\SammBot.Library.csproj", "{E93C6BE7-371F-4030-AE5C-CB4941B49759}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
using Discord.Interactions;
using Discord.WebSocket;
using Microsoft.Extensions.DependencyInjection;
using SammBot.Bot.Services;
using SammBot.Library;
using System;
using System.Diagnostics;
Expand All @@ -34,8 +33,9 @@
using System.Threading;
using System.Threading.Tasks;
using SammBot.Library.Services;
using SammBot.Services;

namespace SammBot.Bot;
namespace SammBot;

/// <summary>
/// A class containing all of the startup logic.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
public partial class InitialCreate : Migration
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
public partial class GuildConfig_LoggingWelcome : Migration
{
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
/// <inheritdoc />
public partial class NewWelcomeFormat : Migration
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
/// <inheritdoc />
public partial class AddGeneratedIds : Migration
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
/// <inheritdoc />
public partial class AlternateIndices : Migration
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
/// <inheritdoc />
public partial class RemovePronouns : Migration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using SammBot.Bot.Services;
using SammBot.Services;

#nullable disable

namespace SammBot.Bot.Migrations
namespace SammBot.Migrations
{
[DbContext(typeof(DatabaseService))]
partial class BotDatabaseModelSnapshot : ModelSnapshot
Expand All @@ -16,7 +16,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
#pragma warning disable 612, 618
modelBuilder.HasAnnotation("ProductVersion", "7.0.5");

modelBuilder.Entity("SammBot.Bot.Database.Models.GuildConfig", b =>
modelBuilder.Entity("SammBot.Database.Models.GuildConfig", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
Expand Down Expand Up @@ -69,7 +69,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
b.ToTable("GuildConfigs");
});

modelBuilder.Entity("SammBot.Bot.Database.Models.UserTag", b =>
modelBuilder.Entity("SammBot.Database.Models.UserTag", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
Expand Down Expand Up @@ -97,7 +97,7 @@ protected override void BuildModel(ModelBuilder modelBuilder)
b.ToTable("UserTags");
});

modelBuilder.Entity("SammBot.Bot.Database.Models.UserWarning", b =>
modelBuilder.Entity("SammBot.Database.Models.UserWarning", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
using System;
using System.Threading.Tasks;

namespace SammBot.Bot.Modules;
namespace SammBot.Modules;

[PrettyName("Bot Administration")]
[Group("badmin", "Bot management commands. Bot owner only.")]
Expand Down
Loading

0 comments on commit 26cc76a

Please sign in to comment.