Console programm hinzugefügt

This commit is contained in:
HuskyTeufel
2021-08-05 08:01:01 +02:00
parent 34b2c92bb6
commit 4d26bb007e
6 changed files with 52 additions and 4 deletions

12
XMLProgramm/Program.cs Normal file
View File

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

View File

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