Projektdateien hinzufügen.

This commit is contained in:
Tim Wundenberg
2018-05-25 09:11:47 +02:00
parent cc936b24ab
commit d8092e8c2d
3 changed files with 45 additions and 0 deletions

View File

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

12
CoopSweeper/Program.cs Normal file
View File

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