From b4970add7cf98208bf086a22d5839dc742c98e7f Mon Sep 17 00:00:00 2001 From: Denis Date: Tue, 9 Nov 2021 08:52:14 +0200 Subject: [PATCH] Add project files. --- BMGEditor.sln | 25 +++++++++++++++++++++++++ BMGEditor/BMGEditor.csproj | 11 +++++++++++ BMGEditor/Program.cs | 20 ++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 BMGEditor.sln create mode 100644 BMGEditor/BMGEditor.csproj create mode 100644 BMGEditor/Program.cs diff --git a/BMGEditor.sln b/BMGEditor.sln new file mode 100644 index 0000000..7d8febb --- /dev/null +++ b/BMGEditor.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.0.31903.59 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BMGEditor", "BMGEditor\BMGEditor.csproj", "{E7F50E37-2F2C-4918-80E0-E23D484875B8}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E7F50E37-2F2C-4918-80E0-E23D484875B8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E7F50E37-2F2C-4918-80E0-E23D484875B8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E7F50E37-2F2C-4918-80E0-E23D484875B8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E7F50E37-2F2C-4918-80E0-E23D484875B8}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {877F2401-7199-47C1-8C19-247FA16E607D} + EndGlobalSection +EndGlobal diff --git a/BMGEditor/BMGEditor.csproj b/BMGEditor/BMGEditor.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/BMGEditor/BMGEditor.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/BMGEditor/Program.cs b/BMGEditor/Program.cs new file mode 100644 index 0000000..918f01e --- /dev/null +++ b/BMGEditor/Program.cs @@ -0,0 +1,20 @@ +using System; +using System.Linq; +using System.Collections.Generic; +using System.Windows.Forms; + +namespace BMGEditor +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + ApplicationConfiguration.Initialize(); + + } + } +} \ No newline at end of file