Compare commits

..

2 Commits

Author SHA1 Message Date
079f73fef7 akl 2024-04-25 16:12:44 +04:00
969ba7728c lab0 2024-04-25 16:09:15 +04:00
3 changed files with 53 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.9.34728.123
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ProjertTrain", "ProjertTrain\ProjertTrain.csproj", "{C3A1D95F-D40D-4B35-8109-2358CFEA941D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C3A1D95F-D40D-4B35-8109-2358CFEA941D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C3A1D95F-D40D-4B35-8109-2358CFEA941D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C3A1D95F-D40D-4B35-8109-2358CFEA941D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C3A1D95F-D40D-4B35-8109-2358CFEA941D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {C05A158C-DDB4-4ECA-8451-4EDD98AAADFB}
EndGlobalSection
EndGlobal

View File

@ -0,0 +1,17 @@
namespace ProjertTrain
{
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,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
</Project>