Add project sturcture

This commit is contained in:
Andrew Cooper
2021-10-30 22:32:22 +11:00
parent 945bf9fd86
commit 6b194366fb
3 changed files with 54 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
namespace Tower
{
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>