Gyakorlás

This commit is contained in:
lego
2026-09-09 14:52:24 +02:00
parent aed00c3b52
commit 4fc7a99164
12 changed files with 248 additions and 0 deletions

25
Tombok/Tombok.sln Normal file
View File

@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.7.34024.191
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tombok", "Tombok\Tombok.csproj", "{EEAB85F6-5992-46C5-9153-943E22221D79}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EEAB85F6-5992-46C5-9153-943E22221D79}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EEAB85F6-5992-46C5-9153-943E22221D79}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EEAB85F6-5992-46C5-9153-943E22221D79}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EEAB85F6-5992-46C5-9153-943E22221D79}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {A12116D7-49DA-4B2D-9C90-57B2A39A7DE4}
EndGlobalSection
EndGlobal

2
Tombok/Tombok/Program.cs Normal file
View File

@@ -0,0 +1,2 @@
// See https://aka.ms/new-console-template for more information
Console.WriteLine("Hello, World!");

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>