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