Add table generator to the installer repo so it can be found and updated along with the tables.

This commit is contained in:
Marc Paine 2020-11-23 15:46:21 -08:00
parent dcc8aac7af
commit 668d2efb0e
10 changed files with 1066 additions and 1 deletions

View file

@ -0,0 +1,19 @@
<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>