From cddd821ed18f6d3cba768ff53025cf6d0bf8c755 Mon Sep 17 00:00:00 2001 From: ekallin Date: Sun, 25 Feb 2024 19:23:21 +0400 Subject: [PATCH] =?UTF-8?q?=D1=81=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=20=D0=BD=D0=B0=D1=87=D0=B0=D0=BB=D1=8C=D0=BD=D0=BE=D0=B3?= =?UTF-8?q?=D0=BE=20=D0=BF=D1=80=D0=BE=D0=B5=D0=BA=D1=82=D0=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SushiBar/Program.cs | 17 +++++++++++++++++ SushiBar/SushiBar.csproj | 11 +++++++++++ SushiBar/SushiBar.sln | 25 +++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 SushiBar/Program.cs create mode 100644 SushiBar/SushiBar.csproj create mode 100644 SushiBar/SushiBar.sln diff --git a/SushiBar/Program.cs b/SushiBar/Program.cs new file mode 100644 index 0000000..402417b --- /dev/null +++ b/SushiBar/Program.cs @@ -0,0 +1,17 @@ +namespace SushiBar +{ + 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/SushiBar/SushiBar.csproj b/SushiBar/SushiBar.csproj new file mode 100644 index 0000000..663fdb8 --- /dev/null +++ b/SushiBar/SushiBar.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net8.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/SushiBar/SushiBar.sln b/SushiBar/SushiBar.sln new file mode 100644 index 0000000..dec7668 --- /dev/null +++ b/SushiBar/SushiBar.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}") = "SushiBar", "SushiBar.csproj", "{E1025CC0-5650-4509-93C8-BF4FA2D506E0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {E1025CC0-5650-4509-93C8-BF4FA2D506E0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E1025CC0-5650-4509-93C8-BF4FA2D506E0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E1025CC0-5650-4509-93C8-BF4FA2D506E0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E1025CC0-5650-4509-93C8-BF4FA2D506E0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {0E01AEDC-C6B0-485D-9A5B-50189F959098} + EndGlobalSection +EndGlobal