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,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FsUnit.Xunit" Version="3.4.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="DomainTests.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TableGenerator\TableGenerator.fsproj" />
</ItemGroup>
</Project>