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

This commit is contained in:
DeerElk 2024-09-27 04:14:21 +04:00
parent d8675804a3
commit 0fc456394d
3 changed files with 41 additions and 0 deletions

10
COP.csproj Normal file
View File

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

25
COP.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35222.181
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "COP", "COP.csproj", "{0A961E2F-7089-4988-8BC1-003C08939FB2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{0A961E2F-7089-4988-8BC1-003C08939FB2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0A961E2F-7089-4988-8BC1-003C08939FB2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0A961E2F-7089-4988-8BC1-003C08939FB2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0A961E2F-7089-4988-8BC1-003C08939FB2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {B983C7CD-6625-4E55-A91F-7AD0576E0E7D}
EndGlobalSection
EndGlobal

6
Class1.cs Normal file
View File

@ -0,0 +1,6 @@
namespace COP
{
public class Class1
{
}
}