Skip to content

Commit

Permalink
Rename from Moe-Bot/MoeBot to Moe/moe
Browse files Browse the repository at this point in the history
Remove comments from .vscode jsons.
  • Loading branch information
gepbird committed Nov 14, 2023
1 parent b07b6cc commit 5c01058
Show file tree
Hide file tree
Showing 72 changed files with 131 additions and 153 deletions.
25 changes: 4 additions & 21 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,41 +2,24 @@
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": "Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net6.0/MoeBot.dll",
"args": [
"--",
"--development",
],
"program": "${workspaceFolder}/bin/Debug/net6.0/moe.dll",
"args": ["--", "--development"],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
"stopAtEntry": false
},
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": "Launch and create commands",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net6.0/MoeBot.dll",
"args": [
"--",
"--development",
"--register-commands",
],
"program": "${workspaceFolder}/bin/Debug/net6.0/moe.dll",
"args": ["--", "--development", "--register-commands"],
"cwd": "${workspaceFolder}",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
"stopAtEntry": false
},
Expand Down
11 changes: 3 additions & 8 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/MoeBot.csproj",
"${workspaceFolder}/moe.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -19,7 +19,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/MoeBot.csproj",
"${workspaceFolder}/moe.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
Expand All @@ -29,12 +29,7 @@
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/MoeBot.csproj"
],
"args": ["watch", "run", "--project", "${workspaceFolder}/moe.csproj"],
"problemMatcher": "$msCompile"
}
]
Expand Down
2 changes: 1 addition & 1 deletion CLIOptions.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using CommandLine;

namespace MoeBot;
namespace Moe;

public class CLIOptions
{
Expand Down
2 changes: 1 addition & 1 deletion Colors.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Discord;
using Discord.WebSocket;

namespace MoeBot;
namespace Moe;

public static class Colors
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/AnnounceCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class AnnounceCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/CustomCommandCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class CustomCommandCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/CustomCommandHandler.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class CustomCommandHandler
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/CustomEmbedCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class CustomEmbedCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/CustomRoleCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class CustomRoleCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/EditEmbedMessageCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class EditEmbedMessageCommand : MessageCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/HumanTimeCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class HumanTimeCommand : SlashCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/LevelsCommand.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class LevelsCommand : SlashCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/LevelupMessage.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class LevelupMessage : SlashCommandBase
{
Expand Down
2 changes: 1 addition & 1 deletion Commands/MessageCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Discord;
using Discord.WebSocket;

namespace MoeBot.Commands;
namespace Moe.Commands;

public abstract class MessageCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/NoXPUserCommand.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class NoXPUserCommand : UserCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/PinMessageCommand.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class PinMessageCommand : MessageCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/PinSlashCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;
using System.Text.RegularExpressions;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class PinSlashCommand : SlashCommandBase
{
Expand Down
2 changes: 1 addition & 1 deletion Commands/PingCommand.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Discord.WebSocket;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class PingCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/PurgeCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class PurgeCommand : SlashCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/RankCommand.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class RankCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/RngCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class RngCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/SayCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class SayCommand : SlashCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/ServerinfoCommand.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class ServerinfoCommand : SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/SettingsCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class SettingsCommand : SlashCommandBase
{
Expand Down
2 changes: 1 addition & 1 deletion Commands/SlashCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Discord;
using Discord.WebSocket;

namespace MoeBot.Commands;
namespace Moe.Commands;

public abstract class SlashCommandBase
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/SnapshotCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class SnapshotCommand : SlashCommandBase
{
Expand Down
2 changes: 1 addition & 1 deletion Commands/SocketSlashCommandExtension.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Discord.WebSocket;

namespace MoeBot;
namespace Moe;

public static class SocketSlashCommandExtension
{
Expand Down
6 changes: 3 additions & 3 deletions Commands/TemplateCommand.cs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Models;
using MoeBot.Services;
using Moe.Models;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class TemplateCommand : SlashCommandBase
{
Expand Down
2 changes: 1 addition & 1 deletion Commands/UserCommandBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using Discord;
using Discord.WebSocket;

namespace MoeBot.Commands;
namespace Moe.Commands;

public abstract class UserCommandBase
{
Expand Down
4 changes: 2 additions & 2 deletions Commands/UserinfoCommand.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using Discord;
using Discord.WebSocket;
using MoeBot.Services;
using Moe.Services;

namespace MoeBot.Commands;
namespace Moe.Commands;

public class UserinfoCommand : SlashCommandBase
{
Expand Down
Loading

0 comments on commit 5c01058

Please sign in to comment.