Create new .NET Core 2.2 console application

This commit is contained in:
James Skemp 2019-01-03 18:07:32 -06:00
parent f2afd1f76b
commit 5f7613fd35
3 changed files with 24 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Build Results
[Bb]in/
[Oo]bj/

12
Program.cs Normal file
View File

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

View File

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