Decision Engine section

This commit is contained in:
Anthony Leland 2020-10-30 05:23:31 -04:00
parent 2993056967
commit 31024f9fc5
8 changed files with 76 additions and 25 deletions

12
source/Servo/Program.cs Normal file
View file

@ -0,0 +1,12 @@
using System;
namespace Servo
{
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>netcoreapp3.1</TargetFramework>
</PropertyGroup>
</Project>