Создание проекта

This commit is contained in:
Егор Васин 2024-12-03 21:22:57 +03:00
parent 1bc197196b
commit 444ff7d5c4
5 changed files with 103 additions and 0 deletions

View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.11.35312.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ISEbd-22_Vasin_E.D._It_Company", "ISEbd-22_Vasin_E.D._It_Company\ISEbd-22_Vasin_E.D._It_Company.csproj", "{F67D15B1-197B-4656-9822-E0DC2CF618D3}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{F67D15B1-197B-4656-9822-E0DC2CF618D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{F67D15B1-197B-4656-9822-E0DC2CF618D3}.Debug|Any CPU.Build.0 = Debug|Any CPU
{F67D15B1-197B-4656-9822-E0DC2CF618D3}.Release|Any CPU.ActiveCfg = Release|Any CPU
{F67D15B1-197B-4656-9822-E0DC2CF618D3}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C8D5E033-B487-4D0A-99E2-18BF9293FDE5}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,39 @@
namespace ISEbd_22_Vasin_E.D._It_Company
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
this.Text = "Form1";
}
#endregion
}
}

View File

@ -0,0 +1,10 @@
namespace ISEbd_22_Vasin_E.D._It_Company
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
}
}

View File

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<RootNamespace>ISEbd_22_Vasin_E.D._It_Company</RootNamespace>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>

View File

@ -0,0 +1,17 @@
namespace ISEbd_22_Vasin_E.D._It_Company
{
internal static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[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());
}
}
}