From cfd20e3a83d6ac0ab46a2049126c6325a39e0e10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9C=D0=BA=20=D0=98=D0=B3=D0=BE=D1=80=D1=8C?= Date: Sat, 1 Apr 2023 14:40:28 +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 --- CarService/CarService.sln | 25 +++++++++++++++++++ .../CarServiceView/CarServiceView.csproj | 11 ++++++++ CarService/CarServiceView/Program.cs | 17 +++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 CarService/CarService.sln create mode 100644 CarService/CarServiceView/CarServiceView.csproj create mode 100644 CarService/CarServiceView/Program.cs diff --git a/CarService/CarService.sln b/CarService/CarService.sln new file mode 100644 index 0000000..6c349a7 --- /dev/null +++ b/CarService/CarService.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33205.214 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CarServiceView", "CarServiceView\CarServiceView.csproj", "{C262D7D2-9DBD-4E9E-B64A-540100480F23}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {C262D7D2-9DBD-4E9E-B64A-540100480F23}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {C262D7D2-9DBD-4E9E-B64A-540100480F23}.Debug|Any CPU.Build.0 = Debug|Any CPU + {C262D7D2-9DBD-4E9E-B64A-540100480F23}.Release|Any CPU.ActiveCfg = Release|Any CPU + {C262D7D2-9DBD-4E9E-B64A-540100480F23}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {2C59FB23-28BF-47F8-A2FC-9E6ACBD07E42} + EndGlobalSection +EndGlobal diff --git a/CarService/CarServiceView/CarServiceView.csproj b/CarService/CarServiceView/CarServiceView.csproj new file mode 100644 index 0000000..b57c89e --- /dev/null +++ b/CarService/CarServiceView/CarServiceView.csproj @@ -0,0 +1,11 @@ + + + + WinExe + net6.0-windows + enable + true + enable + + + \ No newline at end of file diff --git a/CarService/CarServiceView/Program.cs b/CarService/CarServiceView/Program.cs new file mode 100644 index 0000000..174cd16 --- /dev/null +++ b/CarService/CarServiceView/Program.cs @@ -0,0 +1,17 @@ +namespace CarServiceView +{ + 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