diff --git a/.gitignore b/.gitignore index 65261fc..3a852c1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ [Oo]bj/ .vs/ *.user +.vscode \ No newline at end of file diff --git a/RegexBot.sln b/RegexBot.sln new file mode 100644 index 0000000..4bc33bf --- /dev/null +++ b/RegexBot.sln @@ -0,0 +1,22 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 15 +VisualStudioVersion = 15.0.26430.6 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RegexBot", "RegexBot\RegexBot.csproj", "{DD16F03C-751C-463F-872F-1749124B7A39}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {DD16F03C-751C-463F-872F-1749124B7A39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DD16F03C-751C-463F-872F-1749124B7A39}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DD16F03C-751C-463F-872F-1749124B7A39}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DD16F03C-751C-463F-872F-1749124B7A39}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/BotModule.cs b/RegexBot/BotModule.cs similarity index 100% rename from BotModule.cs rename to RegexBot/BotModule.cs diff --git a/ConfigItem/DatabaseConfig.cs b/RegexBot/ConfigItem/DatabaseConfig.cs similarity index 100% rename from ConfigItem/DatabaseConfig.cs rename to RegexBot/ConfigItem/DatabaseConfig.cs diff --git a/ConfigItem/EntityList.cs b/RegexBot/ConfigItem/EntityList.cs similarity index 100% rename from ConfigItem/EntityList.cs rename to RegexBot/ConfigItem/EntityList.cs diff --git a/ConfigItem/EntityName.cs b/RegexBot/ConfigItem/EntityName.cs similarity index 100% rename from ConfigItem/EntityName.cs rename to RegexBot/ConfigItem/EntityName.cs diff --git a/ConfigItem/FilterList.cs b/RegexBot/ConfigItem/FilterList.cs similarity index 100% rename from ConfigItem/FilterList.cs rename to RegexBot/ConfigItem/FilterList.cs diff --git a/ConfigItem/RuleImportException.cs b/RegexBot/ConfigItem/RuleImportException.cs similarity index 100% rename from ConfigItem/RuleImportException.cs rename to RegexBot/ConfigItem/RuleImportException.cs diff --git a/ConfigItem/ServerConfig.cs b/RegexBot/ConfigItem/ServerConfig.cs similarity index 100% rename from ConfigItem/ServerConfig.cs rename to RegexBot/ConfigItem/ServerConfig.cs diff --git a/Configuration.cs b/RegexBot/Configuration.cs similarity index 100% rename from Configuration.cs rename to RegexBot/Configuration.cs diff --git a/EntityCache/CacheChannel.cs b/RegexBot/EntityCache/CacheChannel.cs similarity index 100% rename from EntityCache/CacheChannel.cs rename to RegexBot/EntityCache/CacheChannel.cs diff --git a/EntityCache/CacheUser.cs b/RegexBot/EntityCache/CacheUser.cs similarity index 100% rename from EntityCache/CacheUser.cs rename to RegexBot/EntityCache/CacheUser.cs diff --git a/EntityCache/ECModule.cs b/RegexBot/EntityCache/ECModule.cs similarity index 100% rename from EntityCache/ECModule.cs rename to RegexBot/EntityCache/ECModule.cs diff --git a/EntityCache/EntityCache.cs b/RegexBot/EntityCache/EntityCache.cs similarity index 100% rename from EntityCache/EntityCache.cs rename to RegexBot/EntityCache/EntityCache.cs diff --git a/EntityCache/SqlHelper.cs b/RegexBot/EntityCache/SqlHelper.cs similarity index 100% rename from EntityCache/SqlHelper.cs rename to RegexBot/EntityCache/SqlHelper.cs diff --git a/Logger.cs b/RegexBot/Logger.cs similarity index 100% rename from Logger.cs rename to RegexBot/Logger.cs diff --git a/Module/AutoMod/AutoMod.cs b/RegexBot/Module/AutoMod/AutoMod.cs similarity index 100% rename from Module/AutoMod/AutoMod.cs rename to RegexBot/Module/AutoMod/AutoMod.cs diff --git a/Module/AutoMod/ConfigItem.cs b/RegexBot/Module/AutoMod/ConfigItem.cs similarity index 100% rename from Module/AutoMod/ConfigItem.cs rename to RegexBot/Module/AutoMod/ConfigItem.cs diff --git a/Module/AutoMod/ResponseBase.cs b/RegexBot/Module/AutoMod/ResponseBase.cs similarity index 100% rename from Module/AutoMod/ResponseBase.cs rename to RegexBot/Module/AutoMod/ResponseBase.cs diff --git a/Module/AutoMod/Responses/Ban.cs b/RegexBot/Module/AutoMod/Responses/Ban.cs similarity index 100% rename from Module/AutoMod/Responses/Ban.cs rename to RegexBot/Module/AutoMod/Responses/Ban.cs diff --git a/Module/AutoMod/Responses/Kick.cs b/RegexBot/Module/AutoMod/Responses/Kick.cs similarity index 100% rename from Module/AutoMod/Responses/Kick.cs rename to RegexBot/Module/AutoMod/Responses/Kick.cs diff --git a/Module/AutoMod/Responses/Remove.cs b/RegexBot/Module/AutoMod/Responses/Remove.cs similarity index 100% rename from Module/AutoMod/Responses/Remove.cs rename to RegexBot/Module/AutoMod/Responses/Remove.cs diff --git a/Module/AutoMod/Responses/Report.cs b/RegexBot/Module/AutoMod/Responses/Report.cs similarity index 100% rename from Module/AutoMod/Responses/Report.cs rename to RegexBot/Module/AutoMod/Responses/Report.cs diff --git a/Module/AutoMod/Responses/RoleManipulation.cs b/RegexBot/Module/AutoMod/Responses/RoleManipulation.cs similarity index 100% rename from Module/AutoMod/Responses/RoleManipulation.cs rename to RegexBot/Module/AutoMod/Responses/RoleManipulation.cs diff --git a/Module/AutoMod/Responses/Say.cs b/RegexBot/Module/AutoMod/Responses/Say.cs similarity index 100% rename from Module/AutoMod/Responses/Say.cs rename to RegexBot/Module/AutoMod/Responses/Say.cs diff --git a/Module/AutoRespond/AutoRespond.cs b/RegexBot/Module/AutoRespond/AutoRespond.cs similarity index 100% rename from Module/AutoRespond/AutoRespond.cs rename to RegexBot/Module/AutoRespond/AutoRespond.cs diff --git a/Module/AutoRespond/ConfigItem.cs b/RegexBot/Module/AutoRespond/ConfigItem.cs similarity index 100% rename from Module/AutoRespond/ConfigItem.cs rename to RegexBot/Module/AutoRespond/ConfigItem.cs diff --git a/Module/AutoRespond/RateLimitCache.cs b/RegexBot/Module/AutoRespond/RateLimitCache.cs similarity index 100% rename from Module/AutoRespond/RateLimitCache.cs rename to RegexBot/Module/AutoRespond/RateLimitCache.cs diff --git a/Module/DMLogger/DMLogger.cs b/RegexBot/Module/DMLogger/DMLogger.cs similarity index 100% rename from Module/DMLogger/DMLogger.cs rename to RegexBot/Module/DMLogger/DMLogger.cs diff --git a/Module/EntryAutoRole/EntryAutoRole.cs b/RegexBot/Module/EntryAutoRole/EntryAutoRole.cs similarity index 100% rename from Module/EntryAutoRole/EntryAutoRole.cs rename to RegexBot/Module/EntryAutoRole/EntryAutoRole.cs diff --git a/Module/EntryAutoRole/ModuleConfig.cs b/RegexBot/Module/EntryAutoRole/ModuleConfig.cs similarity index 100% rename from Module/EntryAutoRole/ModuleConfig.cs rename to RegexBot/Module/EntryAutoRole/ModuleConfig.cs diff --git a/Module/ModCommands/Commands/BanKick.cs b/RegexBot/Module/ModCommands/Commands/BanKick.cs similarity index 100% rename from Module/ModCommands/Commands/BanKick.cs rename to RegexBot/Module/ModCommands/Commands/BanKick.cs diff --git a/Module/ModCommands/Commands/ConfReload.cs b/RegexBot/Module/ModCommands/Commands/ConfReload.cs similarity index 100% rename from Module/ModCommands/Commands/ConfReload.cs rename to RegexBot/Module/ModCommands/Commands/ConfReload.cs diff --git a/Module/ModCommands/Commands/RoleManipulation.cs b/RegexBot/Module/ModCommands/Commands/RoleManipulation.cs similarity index 100% rename from Module/ModCommands/Commands/RoleManipulation.cs rename to RegexBot/Module/ModCommands/Commands/RoleManipulation.cs diff --git a/Module/ModCommands/Commands/Say.cs b/RegexBot/Module/ModCommands/Commands/Say.cs similarity index 100% rename from Module/ModCommands/Commands/Say.cs rename to RegexBot/Module/ModCommands/Commands/Say.cs diff --git a/Module/ModCommands/Commands/Unban.cs b/RegexBot/Module/ModCommands/Commands/Unban.cs similarity index 100% rename from Module/ModCommands/Commands/Unban.cs rename to RegexBot/Module/ModCommands/Commands/Unban.cs diff --git a/Module/ModCommands/Commands/_CommandBase.cs b/RegexBot/Module/ModCommands/Commands/_CommandBase.cs similarity index 100% rename from Module/ModCommands/Commands/_CommandBase.cs rename to RegexBot/Module/ModCommands/Commands/_CommandBase.cs diff --git a/Module/ModCommands/ConfigItem.cs b/RegexBot/Module/ModCommands/ConfigItem.cs similarity index 100% rename from Module/ModCommands/ConfigItem.cs rename to RegexBot/Module/ModCommands/ConfigItem.cs diff --git a/Module/ModCommands/ModCommands.cs b/RegexBot/Module/ModCommands/ModCommands.cs similarity index 100% rename from Module/ModCommands/ModCommands.cs rename to RegexBot/Module/ModCommands/ModCommands.cs diff --git a/Module/ModLogs/GuildState.cs b/RegexBot/Module/ModLogs/GuildState.cs similarity index 100% rename from Module/ModLogs/GuildState.cs rename to RegexBot/Module/ModLogs/GuildState.cs diff --git a/Module/ModLogs/LogEntry.cs b/RegexBot/Module/ModLogs/LogEntry.cs similarity index 100% rename from Module/ModLogs/LogEntry.cs rename to RegexBot/Module/ModLogs/LogEntry.cs diff --git a/Module/ModLogs/MessageCache.cs b/RegexBot/Module/ModLogs/MessageCache.cs similarity index 100% rename from Module/ModLogs/MessageCache.cs rename to RegexBot/Module/ModLogs/MessageCache.cs diff --git a/Module/ModLogs/ModLogs.cs b/RegexBot/Module/ModLogs/ModLogs.cs similarity index 100% rename from Module/ModLogs/ModLogs.cs rename to RegexBot/Module/ModLogs/ModLogs.cs diff --git a/Module/VoiceRoleSync/VoiceRoleSync.cs b/RegexBot/Module/VoiceRoleSync/VoiceRoleSync.cs similarity index 100% rename from Module/VoiceRoleSync/VoiceRoleSync.cs rename to RegexBot/Module/VoiceRoleSync/VoiceRoleSync.cs diff --git a/Module/VoteTempChannel/Configuration.cs b/RegexBot/Module/VoteTempChannel/Configuration.cs similarity index 100% rename from Module/VoteTempChannel/Configuration.cs rename to RegexBot/Module/VoteTempChannel/Configuration.cs diff --git a/Module/VoteTempChannel/GuildInformation.cs b/RegexBot/Module/VoteTempChannel/GuildInformation.cs similarity index 100% rename from Module/VoteTempChannel/GuildInformation.cs rename to RegexBot/Module/VoteTempChannel/GuildInformation.cs diff --git a/Module/VoteTempChannel/VoteTempChannel.cs b/RegexBot/Module/VoteTempChannel/VoteTempChannel.cs similarity index 100% rename from Module/VoteTempChannel/VoteTempChannel.cs rename to RegexBot/Module/VoteTempChannel/VoteTempChannel.cs diff --git a/Module/VoteTempChannel/VotingSession.cs b/RegexBot/Module/VoteTempChannel/VotingSession.cs similarity index 100% rename from Module/VoteTempChannel/VotingSession.cs rename to RegexBot/Module/VoteTempChannel/VotingSession.cs diff --git a/Program.cs b/RegexBot/Program.cs similarity index 100% rename from Program.cs rename to RegexBot/Program.cs diff --git a/Properties/PublishProfiles/DebugProfile.pubxml b/RegexBot/Properties/PublishProfiles/DebugProfile.pubxml similarity index 100% rename from Properties/PublishProfiles/DebugProfile.pubxml rename to RegexBot/Properties/PublishProfiles/DebugProfile.pubxml diff --git a/Properties/PublishProfiles/StableProfile.pubxml b/RegexBot/Properties/PublishProfiles/StableProfile.pubxml similarity index 100% rename from Properties/PublishProfiles/StableProfile.pubxml rename to RegexBot/Properties/PublishProfiles/StableProfile.pubxml diff --git a/RegexBot.cs b/RegexBot/RegexBot.cs similarity index 100% rename from RegexBot.cs rename to RegexBot/RegexBot.cs diff --git a/RegexBot.csproj b/RegexBot/RegexBot.csproj similarity index 100% rename from RegexBot.csproj rename to RegexBot/RegexBot.csproj diff --git a/docs/_config.yml b/RegexBot/docs/_config.yml similarity index 100% rename from docs/_config.yml rename to RegexBot/docs/_config.yml diff --git a/docs/_layouts/default.html b/RegexBot/docs/_layouts/default.html similarity index 100% rename from docs/_layouts/default.html rename to RegexBot/docs/_layouts/default.html diff --git a/docs/assets/css/style.scss b/RegexBot/docs/assets/css/style.scss similarity index 100% rename from docs/assets/css/style.scss rename to RegexBot/docs/assets/css/style.scss diff --git a/docs/automod.md b/RegexBot/docs/automod.md similarity index 100% rename from docs/automod.md rename to RegexBot/docs/automod.md diff --git a/docs/autorespond.md b/RegexBot/docs/autorespond.md similarity index 100% rename from docs/autorespond.md rename to RegexBot/docs/autorespond.md diff --git a/docs/database.md b/RegexBot/docs/database.md similarity index 100% rename from docs/database.md rename to RegexBot/docs/database.md diff --git a/docs/docs.md b/RegexBot/docs/docs.md similarity index 100% rename from docs/docs.md rename to RegexBot/docs/docs.md diff --git a/docs/entitylist.md b/RegexBot/docs/entitylist.md similarity index 100% rename from docs/entitylist.md rename to RegexBot/docs/entitylist.md diff --git a/docs/entryautorole.md b/RegexBot/docs/entryautorole.md similarity index 100% rename from docs/entryautorole.md rename to RegexBot/docs/entryautorole.md diff --git a/docs/index.md b/RegexBot/docs/index.md similarity index 100% rename from docs/index.md rename to RegexBot/docs/index.md diff --git a/docs/modcommands.md b/RegexBot/docs/modcommands.md similarity index 100% rename from docs/modcommands.md rename to RegexBot/docs/modcommands.md diff --git a/docs/modlogs.md b/RegexBot/docs/modlogs.md similarity index 100% rename from docs/modlogs.md rename to RegexBot/docs/modlogs.md diff --git a/docs/serverdef.md b/RegexBot/docs/serverdef.md similarity index 100% rename from docs/serverdef.md rename to RegexBot/docs/serverdef.md diff --git a/docs/voicerolesync.md b/RegexBot/docs/voicerolesync.md similarity index 100% rename from docs/voicerolesync.md rename to RegexBot/docs/voicerolesync.md