Добавьте файлы проекта.

This commit is contained in:
Антон Скалкин 2023-04-27 15:59:50 +04:00
parent 90684db922
commit dbe688c904
3 changed files with 37 additions and 0 deletions

25
AiSD.Laba2.sln Normal file
View File

@ -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

View File

@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

2
AiSD.Laba2/Program.cs Normal file
View File

@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");