Создание

This commit is contained in:
ArtemEmelyanov 2023-04-28 19:20:27 +04:00
parent 9e6d3e2c71
commit 028f58b14b
6 changed files with 117 additions and 0 deletions

31
Forum/Forum.sln Normal file
View File

@ -0,0 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.3.32825.248
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Forum", "Forum\Forum.csproj", "{39D0273E-0669-416F-BB28-BA53D9B39A9E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ForumDataModels", "ForumDataModels\ForumDataModels.csproj", "{24B317C8-C032-4D6E-8568-B8E849356296}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{39D0273E-0669-416F-BB28-BA53D9B39A9E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{39D0273E-0669-416F-BB28-BA53D9B39A9E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{39D0273E-0669-416F-BB28-BA53D9B39A9E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{39D0273E-0669-416F-BB28-BA53D9B39A9E}.Release|Any CPU.Build.0 = Release|Any CPU
{24B317C8-C032-4D6E-8568-B8E849356296}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{24B317C8-C032-4D6E-8568-B8E849356296}.Debug|Any CPU.Build.0 = Debug|Any CPU
{24B317C8-C032-4D6E-8568-B8E849356296}.Release|Any CPU.ActiveCfg = Release|Any CPU
{24B317C8-C032-4D6E-8568-B8E849356296}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {8E4D9026-29AD-4516-AA5A-6EDB2A04382A}
EndGlobalSection
EndGlobal

39
Forum/Forum/Form1.Designer.cs generated Normal file
View File

@ -0,0 +1,39 @@
namespace Forum
{
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
}
}

10
Forum/Forum/Form1.cs Normal file
View File

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

11
Forum/Forum/Forum.csproj Normal file
View File

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

17
Forum/Forum/Program.cs Normal file
View File

@ -0,0 +1,17 @@
namespace Forum
{
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());
}
}
}

View File

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