fix capitalization

main
cosmonaut 2022-03-03 17:21:42 -08:00
parent c398732ecd
commit d7651b6c9b
7 changed files with 18 additions and 18 deletions

2
.vscode/launch.json vendored
View File

@ -6,7 +6,7 @@
"type": "coreclr", "type": "coreclr",
"request": "launch", "request": "launch",
"preLaunchTask": "Build: .NET 6 Debug", "preLaunchTask": "Build: .NET 6 Debug",
"program": "${workspaceFolder}/bin/x64/Debug/net6.0/MoonWorksImguiExample.dll", "program": "${workspaceFolder}/bin/x64/Debug/net6.0/MoonWorksImGuiExample.dll",
"args": [], "args": [],
"cwd": "${workspaceFolder}/bin/x64/Debug/net6.0", "cwd": "${workspaceFolder}/bin/x64/Debug/net6.0",
"console": "integratedTerminal", "console": "integratedTerminal",

8
.vscode/tasks.json vendored
View File

@ -39,7 +39,7 @@
"command": "dotnet", "command": "dotnet",
"args": [ "args": [
"build", "build",
"./MoonWorksImguiExample.csproj", "./MoonWorksImGuiExample.csproj",
"-p:SolutionDir=${workspaceFolder}/", "-p:SolutionDir=${workspaceFolder}/",
"-p:Platform=x64" "-p:Platform=x64"
], ],
@ -54,7 +54,7 @@
"label": "Run: .NET 6 Debug", "label": "Run: .NET 6 Debug",
"command": "dotnet", "command": "dotnet",
"args": [ "args": [
"./MoonWorksImguiExample.dll" "./MoonWorksImGuiExample.dll"
], ],
"options": { "options": {
"cwd": "${workspaceFolder}/bin/x64/Debug/net6.0" "cwd": "${workspaceFolder}/bin/x64/Debug/net6.0"
@ -71,7 +71,7 @@
"command": "dotnet", "command": "dotnet",
"args": [ "args": [
"build", "build",
"./MoonWorksImguiExample.csproj", "./MoonWorksImGuiExample.csproj",
"--configuration", "--configuration",
"Release", "Release",
"-p:SolutionDir=${workspaceFolder}/", "-p:SolutionDir=${workspaceFolder}/",
@ -88,7 +88,7 @@
"label": "Run: .NET 5 Release", "label": "Run: .NET 5 Release",
"command": "dotnet", "command": "dotnet",
"args": [ "args": [
"./MoonWorksImguiExample.dll" "./MoonWorksImGuiExample.dll"
], ],
"options": { "options": {
"cwd": "${workspaceFolder}/bin/x64/Release/net6.0" "cwd": "${workspaceFolder}/bin/x64/Release/net6.0"

View File

@ -2,13 +2,13 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework> <TargetFramework>net6.0</TargetFramework>
<TargetName>MoonWorksImguiExample</TargetName> <TargetName>MoonWorksImGuiExample</TargetName>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute> <GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
<LangVersion>8.0</LangVersion> <LangVersion>8.0</LangVersion>
<StartupObject>MoonWorksImguiExample.Program</StartupObject> <StartupObject>MoonWorksImGuiExample.Program</StartupObject>
<AssemblyName>MoonWorksImguiExample</AssemblyName> <AssemblyName>MoonWorksImGuiExample</AssemblyName>
<RootNamespace>MoonWorksImguiExample</RootNamespace> <RootNamespace>MoonWorksImGuiExample</RootNamespace>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch> <TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<ApplicationIcon /> <ApplicationIcon />

View File

@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 16
VisualStudioVersion = 16.0.30717.126 VisualStudioVersion = 16.0.30717.126
MinimumVisualStudioVersion = 15.0.26124.0 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 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 EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib", "lib", "{93E44B4D-AF02-4085-ADD3-F8BE21F0BE66}" Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "lib", "lib", "{93E44B4D-AF02-4085-ADD3-F8BE21F0BE66}"
EndProject EndProject

View File

@ -7,9 +7,9 @@ using MoonWorks.Input;
using MoonWorks.Math; using MoonWorks.Math;
using System.Collections.Generic; using System.Collections.Generic;
namespace MoonWorksImguiExample namespace MoonWorksImGuiExample
{ {
class MoonWorksImguiExampleGame : Game class MoonWorksImGuiExampleGame : Game
{ {
private string ContentPath = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "Content"); private string ContentPath = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, "Content");
@ -28,7 +28,7 @@ namespace MoonWorksImguiExample
private ShaderModule ImGuiFragmentShader; private ShaderModule ImGuiFragmentShader;
private Sampler ImGuiSampler; private Sampler ImGuiSampler;
public MoonWorksImguiExampleGame( public MoonWorksImGuiExampleGame(
WindowCreateInfo windowCreateInfo, WindowCreateInfo windowCreateInfo,
PresentMode presentMode, PresentMode presentMode,
bool debugMode bool debugMode

View File

@ -3,7 +3,7 @@ using System.IO;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using MoonWorks; using MoonWorks;
namespace MoonWorksImguiExample namespace MoonWorksImGuiExample
{ {
class Program class Program
{ {
@ -18,11 +18,11 @@ namespace MoonWorksImguiExample
{ {
WindowWidth = 1280, WindowWidth = 1280,
WindowHeight = 720, WindowHeight = 720,
WindowTitle = "MoonWorksImguiExample", WindowTitle = "MoonWorksImGuiExample",
ScreenMode = ScreenMode.Windowed ScreenMode = ScreenMode.Windowed
}; };
MoonWorksImguiExampleGame game = new MoonWorksImguiExampleGame( MoonWorksImGuiExampleGame game = new MoonWorksImGuiExampleGame(
windowCreateInfo, windowCreateInfo,
MoonWorks.Graphics.PresentMode.FIFORelaxed, MoonWorks.Graphics.PresentMode.FIFORelaxed,
true true

View File

@ -1,7 +1,7 @@
using MoonWorks.Graphics; using MoonWorks.Graphics;
using MoonWorks.Math; using MoonWorks.Math;
namespace MoonWorksImguiExample namespace MoonWorksImGuiExample
{ {
public struct VertexPositionTextureColor public struct VertexPositionTextureColor
{ {