From bd08d5cb09c8aa4df43cb6fcdb33c0e60ff245b5 Mon Sep 17 00:00:00 2001 From: Extrimal Date: Wed, 10 Apr 2024 12:40:19 +0400 Subject: [PATCH] =?UTF-8?q?=D0=A1=D0=BE=D0=B7=D0=B4=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5=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 --- Hotel/Hotel.sln | 25 +++++++++++++++++++++++++ Hotel/HotelView/HotelView.csproj | 11 +++++++++++ Hotel/HotelView/Program.cs | 17 +++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 Hotel/Hotel.sln create mode 100644 Hotel/HotelView/HotelView.csproj create mode 100644 Hotel/HotelView/Program.cs diff --git a/Hotel/Hotel.sln b/Hotel/Hotel.sln new file mode 100644 index 0000000..6cf8412 --- /dev/null +++ b/Hotel/Hotel.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34622.214 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "HotelView", "HotelView\HotelView.csproj", "{BEF2955E-B161-42D6-9385-D06D31FA5CF8}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BEF2955E-B161-42D6-9385-D06D31FA5CF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BEF2955E-B161-42D6-9385-D06D31FA5CF8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BEF2955E-B161-42D6-9385-D06D31FA5CF8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BEF2955E-B161-42D6-9385-D06D31FA5CF8}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {45837070-81A4-46FE-AC5B-58E6F951B538} + EndGlobalSection +EndGlobal diff --git a/Hotel/HotelView/HotelView.csproj b/Hotel/HotelView/HotelView.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/Hotel/HotelView/HotelView.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/Hotel/HotelView/Program.cs b/Hotel/HotelView/Program.cs new file mode 100644 index 0000000..b490c05 --- /dev/null +++ b/Hotel/HotelView/Program.cs @@ -0,0 +1,17 @@ +namespace HotelView +{ + 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