fix capitalization
parent
c398732ecd
commit
d7651b6c9b
|
@ -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",
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -2,13 +2,13 @@
|
|||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>net6.0</TargetFramework>
|
||||
<TargetName>MoonWorksImguiExample</TargetName>
|
||||
<TargetName>MoonWorksImGuiExample</TargetName>
|
||||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
||||
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
||||
<LangVersion>8.0</LangVersion>
|
||||
<StartupObject>MoonWorksImguiExample.Program</StartupObject>
|
||||
<AssemblyName>MoonWorksImguiExample</AssemblyName>
|
||||
<RootNamespace>MoonWorksImguiExample</RootNamespace>
|
||||
<StartupObject>MoonWorksImGuiExample.Program</StartupObject>
|
||||
<AssemblyName>MoonWorksImGuiExample</AssemblyName>
|
||||
<RootNamespace>MoonWorksImGuiExample</RootNamespace>
|
||||
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
||||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
||||
<ApplicationIcon />
|
|
@ -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
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using MoonWorks.Graphics;
|
||||
using MoonWorks.Math;
|
||||
|
||||
namespace MoonWorksImguiExample
|
||||
namespace MoonWorksImGuiExample
|
||||
{
|
||||
public struct VertexPositionTextureColor
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue