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