Compare commits
2 Commits
5cb4c814aa
...
079f73fef7
Author | SHA1 | Date | |
---|---|---|---|
079f73fef7 | |||
969ba7728c |
25
ProjertTrain/ProjertTrain.sln
Normal file
25
ProjertTrain/ProjertTrain.sln
Normal 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
|
17
ProjertTrain/ProjertTrain/Program.cs
Normal file
17
ProjertTrain/ProjertTrain/Program.cs
Normal 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());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
11
ProjertTrain/ProjertTrain/ProjertTrain.csproj
Normal file
11
ProjertTrain/ProjertTrain/ProjertTrain.csproj
Normal 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>
|
Loading…
Reference in New Issue
Block a user