fsharp-finite-automata/fsharp-finite-automata.fsproj
2019-03-15 21:20:25 +01:00

17 lines
No EOL
546 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RootNamespace>fsharp_finite_automata</RootNamespace>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Compile Include="DFA.fs" />
<Compile Include="NFA.fs" />
<Compile Include="IsNumericChecker.fs" />
<Compile Include="ContainsSequence.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Shields.GraphViz" Version="1.0.2" />
</ItemGroup>
</Project>