From d7651b6c9b762f55b5c04084f77ed78dbf5763be Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 3 Mar 2022 17:21:42 -0800 Subject: [PATCH] fix capitalization --- .vscode/launch.json | 2 +- .vscode/tasks.json | 8 ++++---- ...rksImguiExample.csproj => MoonWorksImGuiExample.csproj | 8 ++++---- MoonWorksImguiExample.sln => MoonWorksImGuiExample.sln | 4 ++-- src/MoonWorksImguiExampleGame.cs | 6 +++--- src/Program.cs | 6 +++--- src/VertexPositionTextureColor.cs | 2 +- 7 files changed, 18 insertions(+), 18 deletions(-) rename MoonWorksImguiExample.csproj => MoonWorksImGuiExample.csproj (80%) rename MoonWorksImguiExample.sln => MoonWorksImGuiExample.sln (95%) diff --git a/.vscode/launch.json b/.vscode/launch.json index 6b0035d..028493e 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -6,7 +6,7 @@ "type": "coreclr", "request": "launch", "preLaunchTask": "Build: .NET 6 Debug", - "program": "${workspaceFolder}/bin/x64/Debug/net6.0/MoonWorksImguiExample.dll", + "program": "${workspaceFolder}/bin/x64/Debug/net6.0/MoonWorksImGuiExample.dll", "args": [], "cwd": "${workspaceFolder}/bin/x64/Debug/net6.0", "console": "integratedTerminal", diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 94eae1e..5716cf9 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -39,7 +39,7 @@ "command": "dotnet", "args": [ "build", - "./MoonWorksImguiExample.csproj", + "./MoonWorksImGuiExample.csproj", "-p:SolutionDir=${workspaceFolder}/", "-p:Platform=x64" ], @@ -54,7 +54,7 @@ "label": "Run: .NET 6 Debug", "command": "dotnet", "args": [ - "./MoonWorksImguiExample.dll" + "./MoonWorksImGuiExample.dll" ], "options": { "cwd": "${workspaceFolder}/bin/x64/Debug/net6.0" @@ -71,7 +71,7 @@ "command": "dotnet", "args": [ "build", - "./MoonWorksImguiExample.csproj", + "./MoonWorksImGuiExample.csproj", "--configuration", "Release", "-p:SolutionDir=${workspaceFolder}/", @@ -88,7 +88,7 @@ "label": "Run: .NET 5 Release", "command": "dotnet", "args": [ - "./MoonWorksImguiExample.dll" + "./MoonWorksImGuiExample.dll" ], "options": { "cwd": "${workspaceFolder}/bin/x64/Release/net6.0" diff --git a/MoonWorksImguiExample.csproj b/MoonWorksImGuiExample.csproj similarity index 80% rename from MoonWorksImguiExample.csproj rename to MoonWorksImGuiExample.csproj index b662559..2d41962 100644 --- a/MoonWorksImguiExample.csproj +++ b/MoonWorksImGuiExample.csproj @@ -2,13 +2,13 @@ Exe net6.0 - MoonWorksImguiExample + MoonWorksImGuiExample false false 8.0 - MoonWorksImguiExample.Program - MoonWorksImguiExample - MoonWorksImguiExample + MoonWorksImGuiExample.Program + MoonWorksImGuiExample + MoonWorksImGuiExample true true diff --git a/MoonWorksImguiExample.sln b/MoonWorksImGuiExample.sln similarity index 95% rename from MoonWorksImguiExample.sln rename to MoonWorksImGuiExample.sln index 36a3bed..c45a9a2 100644 --- a/MoonWorksImguiExample.sln +++ b/MoonWorksImGuiExample.sln @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.30717.126 MinimumVisualStudioVersion = 15.0.26124.0 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MoonWorksImguiExample.Core", "MoonWorksImguiExample\MoonWorksImguiExample.Core.csproj", "{4589302C-174A-4173-9654-CAA6CA1B5220}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MoonWorksImGuiExample.Core", "MoonWorksImGuiExample\MoonWorksImGuiExample.Core.csproj", "{4589302C-174A-4173-9654-CAA6CA1B5220}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MoonWorksImguiExample", "MoonWorksImguiExample.csproj", "{2E898605-87C3-449C-AB79-A4623C2494E8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MoonWorksImGuiExample", "MoonWorksImGuiExample.csproj", "{2E898605-87C3-449C-AB79-A4623C2494E8}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib", "lib", "{93E44B4D-AF02-4085-ADD3-F8BE21F0BE66}" EndProject diff --git a/src/MoonWorksImguiExampleGame.cs b/src/MoonWorksImguiExampleGame.cs index d1bbd30..36d7580 100644 --- a/src/MoonWorksImguiExampleGame.cs +++ b/src/MoonWorksImguiExampleGame.cs @@ -7,9 +7,9 @@ using MoonWorks.Input; using MoonWorks.Math; using System.Collections.Generic; -namespace MoonWorksImguiExample +namespace MoonWorksImGuiExample { - class MoonWorksImguiExampleGame : Game + class MoonWorksImGuiExampleGame : Game { private string ContentPath = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "Content"); @@ -28,7 +28,7 @@ namespace MoonWorksImguiExample private ShaderModule ImGuiFragmentShader; private Sampler ImGuiSampler; - public MoonWorksImguiExampleGame( + public MoonWorksImGuiExampleGame( WindowCreateInfo windowCreateInfo, PresentMode presentMode, bool debugMode diff --git a/src/Program.cs b/src/Program.cs index c2fa6b3..95d29fd 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -3,7 +3,7 @@ using System.IO; using System.Runtime.InteropServices; using MoonWorks; -namespace MoonWorksImguiExample +namespace MoonWorksImGuiExample { class Program { @@ -18,11 +18,11 @@ namespace MoonWorksImguiExample { WindowWidth = 1280, WindowHeight = 720, - WindowTitle = "MoonWorksImguiExample", + WindowTitle = "MoonWorksImGuiExample", ScreenMode = ScreenMode.Windowed }; - MoonWorksImguiExampleGame game = new MoonWorksImguiExampleGame( + MoonWorksImGuiExampleGame game = new MoonWorksImGuiExampleGame( windowCreateInfo, MoonWorks.Graphics.PresentMode.FIFORelaxed, true diff --git a/src/VertexPositionTextureColor.cs b/src/VertexPositionTextureColor.cs index 55cbbec..7642564 100644 --- a/src/VertexPositionTextureColor.cs +++ b/src/VertexPositionTextureColor.cs @@ -1,7 +1,7 @@ using MoonWorks.Graphics; using MoonWorks.Math; -namespace MoonWorksImguiExample +namespace MoonWorksImGuiExample { public struct VertexPositionTextureColor {