diff --git a/Minecraft-Realms-Emulator.sln b/MyMcRealms.sln similarity index 84% rename from Minecraft-Realms-Emulator.sln rename to MyMcRealms.sln index e229d1e..e9e0361 100644 --- a/Minecraft-Realms-Emulator.sln +++ b/MyMcRealms.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34511.84 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Minecraft-Realms-Emulator", "Minecraft-Realms-Emulator\Minecraft-Realms-Emulator.csproj", "{A9A21AAF-EF1B-4723-9407-51FD6B831B98}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MyMcRealms", "MyMcRealms\MyMcRealms.csproj", "{A9A21AAF-EF1B-4723-9407-51FD6B831B98}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Minecraft-Realms-Emulator/.gitignore b/MyMcRealms/.gitignore similarity index 100% rename from Minecraft-Realms-Emulator/.gitignore rename to MyMcRealms/.gitignore diff --git a/Minecraft-Realms-Emulator/Attributes/RequireMinecraftCookieAttribute.cs b/MyMcRealms/Attributes/RequireMinecraftCookieAttribute.cs similarity index 100% rename from Minecraft-Realms-Emulator/Attributes/RequireMinecraftCookieAttribute.cs rename to MyMcRealms/Attributes/RequireMinecraftCookieAttribute.cs diff --git a/Minecraft-Realms-Emulator/Compatibility.cs b/MyMcRealms/Compatibility.cs similarity index 100% rename from Minecraft-Realms-Emulator/Compatibility.cs rename to MyMcRealms/Compatibility.cs diff --git a/Minecraft-Realms-Emulator/Controllers/ConfigurationController.cs b/MyMcRealms/Controllers/ConfigurationController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/ConfigurationController.cs rename to MyMcRealms/Controllers/ConfigurationController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/InvitesController.cs b/MyMcRealms/Controllers/InvitesController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/InvitesController.cs rename to MyMcRealms/Controllers/InvitesController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/McoController.cs b/MyMcRealms/Controllers/McoController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/McoController.cs rename to MyMcRealms/Controllers/McoController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/OpsController.cs b/MyMcRealms/Controllers/OpsController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/OpsController.cs rename to MyMcRealms/Controllers/OpsController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/SubscriptionsController.cs b/MyMcRealms/Controllers/SubscriptionsController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/SubscriptionsController.cs rename to MyMcRealms/Controllers/SubscriptionsController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/TrialController.cs b/MyMcRealms/Controllers/TrialController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/TrialController.cs rename to MyMcRealms/Controllers/TrialController.cs diff --git a/Minecraft-Realms-Emulator/Controllers/WorldsController.cs b/MyMcRealms/Controllers/WorldsController.cs similarity index 100% rename from Minecraft-Realms-Emulator/Controllers/WorldsController.cs rename to MyMcRealms/Controllers/WorldsController.cs diff --git a/Minecraft-Realms-Emulator/Data/DataContext.cs b/MyMcRealms/Data/DataContext.cs similarity index 100% rename from Minecraft-Realms-Emulator/Data/DataContext.cs rename to MyMcRealms/Data/DataContext.cs diff --git a/Minecraft-Realms-Emulator/Entities/Backup.cs b/MyMcRealms/Entities/Backup.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Backup.cs rename to MyMcRealms/Entities/Backup.cs diff --git a/Minecraft-Realms-Emulator/Entities/Configuration.cs b/MyMcRealms/Entities/Configuration.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Configuration.cs rename to MyMcRealms/Entities/Configuration.cs diff --git a/Minecraft-Realms-Emulator/Entities/Connection.cs b/MyMcRealms/Entities/Connection.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Connection.cs rename to MyMcRealms/Entities/Connection.cs diff --git a/Minecraft-Realms-Emulator/Entities/Invite.cs b/MyMcRealms/Entities/Invite.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Invite.cs rename to MyMcRealms/Entities/Invite.cs diff --git a/Minecraft-Realms-Emulator/Entities/Player.cs b/MyMcRealms/Entities/Player.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Player.cs rename to MyMcRealms/Entities/Player.cs diff --git a/Minecraft-Realms-Emulator/Entities/Slot.cs b/MyMcRealms/Entities/Slot.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Slot.cs rename to MyMcRealms/Entities/Slot.cs diff --git a/Minecraft-Realms-Emulator/Entities/Subscription.cs b/MyMcRealms/Entities/Subscription.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/Subscription.cs rename to MyMcRealms/Entities/Subscription.cs diff --git a/Minecraft-Realms-Emulator/Entities/World.cs b/MyMcRealms/Entities/World.cs similarity index 100% rename from Minecraft-Realms-Emulator/Entities/World.cs rename to MyMcRealms/Entities/World.cs diff --git a/Minecraft-Realms-Emulator/Helpers/Database.cs b/MyMcRealms/Helpers/Database.cs similarity index 100% rename from Minecraft-Realms-Emulator/Helpers/Database.cs rename to MyMcRealms/Helpers/Database.cs diff --git a/Minecraft-Realms-Emulator/Middlewares/MinecraftCookieMiddleware.cs b/MyMcRealms/Middlewares/MinecraftCookieMiddleware.cs similarity index 100% rename from Minecraft-Realms-Emulator/Middlewares/MinecraftCookieMiddleware.cs rename to MyMcRealms/Middlewares/MinecraftCookieMiddleware.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.Designer.cs b/MyMcRealms/Migrations/20240202175209_Initial.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.Designer.cs rename to MyMcRealms/Migrations/20240202175209_Initial.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.cs b/MyMcRealms/Migrations/20240202175209_Initial.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240202175209_Initial.cs rename to MyMcRealms/Migrations/20240202175209_Initial.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.Designer.cs b/MyMcRealms/Migrations/20240203132410_Subscriptions.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.Designer.cs rename to MyMcRealms/Migrations/20240203132410_Subscriptions.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.cs b/MyMcRealms/Migrations/20240203132410_Subscriptions.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240203132410_Subscriptions.cs rename to MyMcRealms/Migrations/20240203132410_Subscriptions.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.Designer.cs b/MyMcRealms/Migrations/20240211135246_Slots.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.Designer.cs rename to MyMcRealms/Migrations/20240211135246_Slots.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.cs b/MyMcRealms/Migrations/20240211135246_Slots.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240211135246_Slots.cs rename to MyMcRealms/Migrations/20240211135246_Slots.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.Designer.cs b/MyMcRealms/Migrations/20240213104200_Connections.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.Designer.cs rename to MyMcRealms/Migrations/20240213104200_Connections.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.cs b/MyMcRealms/Migrations/20240213104200_Connections.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213104200_Connections.cs rename to MyMcRealms/Migrations/20240213104200_Connections.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.Designer.cs b/MyMcRealms/Migrations/20240213121346_Subscription_v2.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.Designer.cs rename to MyMcRealms/Migrations/20240213121346_Subscription_v2.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.cs b/MyMcRealms/Migrations/20240213121346_Subscription_v2.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240213121346_Subscription_v2.cs rename to MyMcRealms/Migrations/20240213121346_Subscription_v2.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.Designer.cs b/MyMcRealms/Migrations/20240214154708_Backups.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.Designer.cs rename to MyMcRealms/Migrations/20240214154708_Backups.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.cs b/MyMcRealms/Migrations/20240214154708_Backups.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240214154708_Backups.cs rename to MyMcRealms/Migrations/20240214154708_Backups.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.Designer.cs b/MyMcRealms/Migrations/20240218160304_Connections_Id.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.Designer.cs rename to MyMcRealms/Migrations/20240218160304_Connections_Id.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.cs b/MyMcRealms/Migrations/20240218160304_Connections_Id.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240218160304_Connections_Id.cs rename to MyMcRealms/Migrations/20240218160304_Connections_Id.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.Designer.cs b/MyMcRealms/Migrations/20240220092334_Invites.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.Designer.cs rename to MyMcRealms/Migrations/20240220092334_Invites.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.cs b/MyMcRealms/Migrations/20240220092334_Invites.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240220092334_Invites.cs rename to MyMcRealms/Migrations/20240220092334_Invites.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240221131108_Players.Designer.cs b/MyMcRealms/Migrations/20240221131108_Players.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240221131108_Players.Designer.cs rename to MyMcRealms/Migrations/20240221131108_Players.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240221131108_Players.cs b/MyMcRealms/Migrations/20240221131108_Players.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240221131108_Players.cs rename to MyMcRealms/Migrations/20240221131108_Players.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.Designer.cs b/MyMcRealms/Migrations/20240301214442_Configuration.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.Designer.cs rename to MyMcRealms/Migrations/20240301214442_Configuration.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.cs b/MyMcRealms/Migrations/20240301214442_Configuration.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240301214442_Configuration.cs rename to MyMcRealms/Migrations/20240301214442_Configuration.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs b/MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs rename to MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs b/MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs rename to MyMcRealms/Migrations/20240315231009_Subscriptions_StartDate_Readable_Field.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs b/MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs rename to MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.cs b/MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240317120329_Worlds_Subscription_field.cs rename to MyMcRealms/Migrations/20240317120329_Worlds_Subscription_field.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.Designer.cs b/MyMcRealms/Migrations/20240414062222_Configuration_Json.Designer.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.Designer.cs rename to MyMcRealms/Migrations/20240414062222_Configuration_Json.Designer.cs diff --git a/Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.cs b/MyMcRealms/Migrations/20240414062222_Configuration_Json.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/20240414062222_Configuration_Json.cs rename to MyMcRealms/Migrations/20240414062222_Configuration_Json.cs diff --git a/Minecraft-Realms-Emulator/Migrations/DataContextModelSnapshot.cs b/MyMcRealms/Migrations/DataContextModelSnapshot.cs similarity index 100% rename from Minecraft-Realms-Emulator/Migrations/DataContextModelSnapshot.cs rename to MyMcRealms/Migrations/DataContextModelSnapshot.cs diff --git a/Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.http b/MyMcRealms/Minecraft-Realms-Emulator.http similarity index 100% rename from Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.http rename to MyMcRealms/Minecraft-Realms-Emulator.http diff --git a/Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.csproj b/MyMcRealms/MyMcRealms.csproj similarity index 100% rename from Minecraft-Realms-Emulator/Minecraft-Realms-Emulator.csproj rename to MyMcRealms/MyMcRealms.csproj diff --git a/Minecraft-Realms-Emulator/Program.cs b/MyMcRealms/Program.cs similarity index 100% rename from Minecraft-Realms-Emulator/Program.cs rename to MyMcRealms/Program.cs diff --git a/Minecraft-Realms-Emulator/Properties/launchSettings.json b/MyMcRealms/Properties/launchSettings.json similarity index 100% rename from Minecraft-Realms-Emulator/Properties/launchSettings.json rename to MyMcRealms/Properties/launchSettings.json diff --git a/Minecraft-Realms-Emulator/Requests/PlayerRequest.cs b/MyMcRealms/Requests/PlayerRequest.cs similarity index 100% rename from Minecraft-Realms-Emulator/Requests/PlayerRequest.cs rename to MyMcRealms/Requests/PlayerRequest.cs diff --git a/Minecraft-Realms-Emulator/Requests/WorldCreateRequest.cs b/MyMcRealms/Requests/WorldCreateRequest.cs similarity index 100% rename from Minecraft-Realms-Emulator/Requests/WorldCreateRequest.cs rename to MyMcRealms/Requests/WorldCreateRequest.cs diff --git a/Minecraft-Realms-Emulator/Responses/BackupsResponse.cs b/MyMcRealms/Responses/BackupsResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/BackupsResponse.cs rename to MyMcRealms/Responses/BackupsResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/InviteList.cs b/MyMcRealms/Responses/InviteList.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/InviteList.cs rename to MyMcRealms/Responses/InviteList.cs diff --git a/Minecraft-Realms-Emulator/Responses/MinecraftPlayerInfo.cs b/MyMcRealms/Responses/MinecraftPlayerInfo.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/MinecraftPlayerInfo.cs rename to MyMcRealms/Responses/MinecraftPlayerInfo.cs diff --git a/Minecraft-Realms-Emulator/Responses/NewsResponse.cs b/MyMcRealms/Responses/NewsResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/NewsResponse.cs rename to MyMcRealms/Responses/NewsResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/OpsResponse.cs b/MyMcRealms/Responses/OpsResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/OpsResponse.cs rename to MyMcRealms/Responses/OpsResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/ServersResponse.cs b/MyMcRealms/Responses/ServersResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/ServersResponse.cs rename to MyMcRealms/Responses/ServersResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/SubscriptionResponse.cs b/MyMcRealms/Responses/SubscriptionResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/SubscriptionResponse.cs rename to MyMcRealms/Responses/SubscriptionResponse.cs diff --git a/Minecraft-Realms-Emulator/Responses/WorldResponse.cs b/MyMcRealms/Responses/WorldResponse.cs similarity index 100% rename from Minecraft-Realms-Emulator/Responses/WorldResponse.cs rename to MyMcRealms/Responses/WorldResponse.cs diff --git a/Minecraft-Realms-Emulator/appsettings.Development.json b/MyMcRealms/appsettings.Development.json similarity index 100% rename from Minecraft-Realms-Emulator/appsettings.Development.json rename to MyMcRealms/appsettings.Development.json diff --git a/Minecraft-Realms-Emulator/appsettings.json b/MyMcRealms/appsettings.json similarity index 100% rename from Minecraft-Realms-Emulator/appsettings.json rename to MyMcRealms/appsettings.json