19 lines
447 B
XML
19 lines
447 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Shared.fs" />
|
|
<Compile Include="Table.fs" />
|
|
<Compile Include="Reference.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NuGet.Versioning" Version="5.5.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|