Add project files.

This commit is contained in:
2022-03-18 11:55:28 +01:00
parent ce0126940e
commit 290ccd7813
3 changed files with 45 additions and 0 deletions

8
Kutyák/Kutyák.csproj Normal file
View File

@@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>

12
Kutyák/Program.cs Normal file
View File

@@ -0,0 +1,12 @@
using System;
namespace Kutyák
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}