Create DotNet Core console app and mod .gitignore

This commit is contained in:
Jose Pino 2018-06-13 23:18:46 -04:00
parent b6fbf53577
commit 8b932f0e64
3 changed files with 23 additions and 5 deletions

8
.gitignore vendored
View File

@ -1,7 +1,5 @@
# ---> VisualStudioCode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.vscode
bin
obj

8
GenericHost.csproj Normal file
View File

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

12
Program.cs Normal file
View File

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