Add project files.

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

25
Kutyák.sln Normal file
View File

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31624.102
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Kutyák", "Kutyák\Kutyák.csproj", "{3B617AEF-F020-4C0C-B111-1AF32070BA53}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3B617AEF-F020-4C0C-B111-1AF32070BA53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3B617AEF-F020-4C0C-B111-1AF32070BA53}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3B617AEF-F020-4C0C-B111-1AF32070BA53}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3B617AEF-F020-4C0C-B111-1AF32070BA53}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {6B434173-0EDF-411C-9A68-BA64E3719344}
EndGlobalSection
EndGlobal

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!");
}
}
}