From dbe688c9040c3a166243833c9fe3db30d59ed568 Mon Sep 17 00:00:00 2001 From: Anton Skalkin Date: Thu, 27 Apr 2023 15:59:50 +0400 Subject: [PATCH] =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D1=8C=D1=82?= =?UTF-8?q?=D0=B5=20=D1=84=D0=B0=D0=B9=D0=BB=D1=8B=20=D0=BF=D1=80=D0=BE?= =?UTF-8?q?=D0=B5=D0=BA=D1=82=D0=B0.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AiSD.Laba2.sln | 25 +++++++++++++++++++++++++ AiSD.Laba2/AiSD.Laba2.csproj | 10 ++++++++++ AiSD.Laba2/Program.cs | 2 ++ 3 files changed, 37 insertions(+) create mode 100644 AiSD.Laba2.sln create mode 100644 AiSD.Laba2/AiSD.Laba2.csproj create mode 100644 AiSD.Laba2/Program.cs diff --git a/AiSD.Laba2.sln b/AiSD.Laba2.sln new file mode 100644 index 0000000..1e5c80a --- /dev/null +++ b/AiSD.Laba2.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33403.182 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AiSD.Laba2", "AiSD.Laba2\AiSD.Laba2.csproj", "{FDC419D9-4F2A-4771-840D-46A2EFD4AA6E}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {FDC419D9-4F2A-4771-840D-46A2EFD4AA6E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {FDC419D9-4F2A-4771-840D-46A2EFD4AA6E}.Debug|Any CPU.Build.0 = Debug|Any CPU + {FDC419D9-4F2A-4771-840D-46A2EFD4AA6E}.Release|Any CPU.ActiveCfg = Release|Any CPU + {FDC419D9-4F2A-4771-840D-46A2EFD4AA6E}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {81057AA6-4E64-4E02-A355-5C8FAA51797E} + EndGlobalSection +EndGlobal diff --git a/AiSD.Laba2/AiSD.Laba2.csproj b/AiSD.Laba2/AiSD.Laba2.csproj new file mode 100644 index 0000000..74abf5c --- /dev/null +++ b/AiSD.Laba2/AiSD.Laba2.csproj @@ -0,0 +1,10 @@ + + + + Exe + net6.0 + enable + enable + + + diff --git a/AiSD.Laba2/Program.cs b/AiSD.Laba2/Program.cs new file mode 100644 index 0000000..3751555 --- /dev/null +++ b/AiSD.Laba2/Program.cs @@ -0,0 +1,2 @@ +// See https://aka.ms/new-console-template for more information +Console.WriteLine("Hello, World!");