diff --git a/Burnt Toast.sln b/Burnt Toast.sln index 9b8ab66..4b730af 100755 --- a/Burnt Toast.sln +++ b/Burnt Toast.sln @@ -1,16 +1,16 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Burnt Toast", "Burnt Toast\Burnt Toast.csproj", "{5CE2DA47-46A2-461F-8F58-B104451F52CF}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Debug|Any CPU.Build.0 = Debug|Any CPU - {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Release|Any CPU.ActiveCfg = Release|Any CPU - {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BurntToast", "BurntToast\BurntToast.csproj", "{5CE2DA47-46A2-461F-8F58-B104451F52CF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {5CE2DA47-46A2-461F-8F58-B104451F52CF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/Burnt Toast/BurntToast.cs b/BurntToast/BurntToast.cs similarity index 97% rename from Burnt Toast/BurntToast.cs rename to BurntToast/BurntToast.cs index cefb742..455edbb 100755 --- a/Burnt Toast/BurntToast.cs +++ b/BurntToast/BurntToast.cs @@ -1,7 +1,7 @@ using System; using Dalamud.Plugin; -namespace Burnt_Toast { +namespace BurntToast { public class BurntToast : IDalamudPlugin { public string Name => "Burnt Toast"; diff --git a/Burnt Toast/Burnt Toast.csproj b/BurntToast/BurntToast.csproj similarity index 91% rename from Burnt Toast/Burnt Toast.csproj rename to BurntToast/BurntToast.csproj index 7751609..1ab0a88 100755 --- a/Burnt Toast/Burnt Toast.csproj +++ b/BurntToast/BurntToast.csproj @@ -2,7 +2,8 @@ net48 - Burnt_Toast + BurntToast + BurntToast enable 1.0.0 latest diff --git a/Burnt Toast/Burnt Toast.yaml b/BurntToast/BurntToast.yaml similarity index 100% rename from Burnt Toast/Burnt Toast.yaml rename to BurntToast/BurntToast.yaml diff --git a/Burnt Toast/Commands.cs b/BurntToast/Commands.cs similarity index 97% rename from Burnt Toast/Commands.cs rename to BurntToast/Commands.cs index 92e85f8..56ddb2d 100755 --- a/Burnt Toast/Commands.cs +++ b/BurntToast/Commands.cs @@ -2,7 +2,7 @@ using System.Collections.Generic; using Dalamud.Game.Command; -namespace Burnt_Toast { +namespace BurntToast { public class Commands : IDisposable { private static readonly Dictionary CommandList = new Dictionary() { ["/burnttoast"] = "Opens the configuration for Burnt Toast", diff --git a/Burnt Toast/Configuration.cs b/BurntToast/Configuration.cs similarity index 95% rename from Burnt Toast/Configuration.cs rename to BurntToast/Configuration.cs index d7b4364..c72e153 100755 --- a/Burnt Toast/Configuration.cs +++ b/BurntToast/Configuration.cs @@ -2,7 +2,7 @@ using System.Text.RegularExpressions; using Dalamud.Configuration; -namespace Burnt_Toast { +namespace BurntToast { public class Configuration : IPluginConfiguration { private BurntToast Plugin { get; set; } = null!; diff --git a/Burnt Toast/Filter.cs b/BurntToast/Filter.cs similarity index 97% rename from Burnt Toast/Filter.cs rename to BurntToast/Filter.cs index 637551e..a1e5e99 100755 --- a/Burnt Toast/Filter.cs +++ b/BurntToast/Filter.cs @@ -2,7 +2,7 @@ using System.Linq; using Dalamud.Game.Text.SeStringHandling; -namespace Burnt_Toast { +namespace BurntToast { public class Filter : IDisposable { private BurntToast Plugin { get; } diff --git a/Burnt Toast/PluginUi.cs b/BurntToast/PluginUi.cs similarity index 99% rename from Burnt Toast/PluginUi.cs rename to BurntToast/PluginUi.cs index f1f0cd8..8c8fff1 100755 --- a/Burnt Toast/PluginUi.cs +++ b/BurntToast/PluginUi.cs @@ -3,7 +3,7 @@ using System.Numerics; using System.Text.RegularExpressions; using ImGuiNET; -namespace Burnt_Toast { +namespace BurntToast { public class PluginUi : IDisposable { private BurntToast Plugin { get; }