Create .net Core project

This commit is contained in:
joachimschmidt557 2019-02-06 20:54:15 +01:00
commit 3b71951b2d
6 changed files with 895 additions and 0 deletions

View file

@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<RootNamespace>fsharp_finite_automata</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="Program.fs" />
</ItemGroup>
</Project>