Create project

This commit is contained in:
Stepan 2024-09-18 18:23:21 +04:00
parent f4efaab53b
commit 25cb2a869d
3 changed files with 41 additions and 0 deletions

25
Component/Component.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.9.34622.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ComponentProgramming", "ComponentProgramming\ComponentProgramming.csproj", "{FB9A0617-7B07-4C05-8588-053F7B6BD336}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FB9A0617-7B07-4C05-8588-053F7B6BD336}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FB9A0617-7B07-4C05-8588-053F7B6BD336}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FB9A0617-7B07-4C05-8588-053F7B6BD336}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FB9A0617-7B07-4C05-8588-053F7B6BD336}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {2620DAE2-7440-4226-BC95-E23CED76E929}
EndGlobalSection
EndGlobal

View File

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

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>