From 39297c08344551736bf2e4b1a8a646a16b1bfc69 Mon Sep 17 00:00:00 2001 From: DelphyAlmond Date: Wed, 12 Jun 2024 12:48:26 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D1=8C=D1=82?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ProjectCruiser.sln | 25 +++++++++++++++++++++++++ ProjectCruiser/Program.cs | 17 +++++++++++++++++ ProjectCruiser/ProjectCruiser.csproj | 11 +++++++++++ 3 files changed, 53 insertions(+) create mode 100644 ProjectCruiser.sln create mode 100644 ProjectCruiser/Program.cs create mode 100644 ProjectCruiser/ProjectCruiser.csproj diff --git a/ProjectCruiser.sln b/ProjectCruiser.sln new file mode 100644 index 0000000..86729a8 --- /dev/null +++ b/ProjectCruiser.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.8.34525.116 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjectCruiser", "ProjectCruiser\ProjectCruiser.csproj", "{AA0BC14A-BDFA-45D8-A567-250EEA399775}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AA0BC14A-BDFA-45D8-A567-250EEA399775}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {84618447-139C-4156-9798-E16E7E543123} + EndGlobalSection +EndGlobal diff --git a/ProjectCruiser/Program.cs b/ProjectCruiser/Program.cs new file mode 100644 index 0000000..2ddf3fc --- /dev/null +++ b/ProjectCruiser/Program.cs @@ -0,0 +1,17 @@ +namespace ProjectCruiser +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + // To customize application configuration such as set high DPI settings or default font, + // see https://aka.ms/applicationconfiguration. + ApplicationConfiguration.Initialize(); + Application.Run(new Form1()); + } + } +} \ No newline at end of file diff --git a/ProjectCruiser/ProjectCruiser.csproj b/ProjectCruiser/ProjectCruiser.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/ProjectCruiser/ProjectCruiser.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file