First code dump

This commit is contained in:
Smaug123
2021-01-14 19:34:21 +00:00
parent 471b7ae944
commit 53af1fb37d
8 changed files with 345 additions and 0 deletions

22
Test/Test.fsproj Normal file
View File

@@ -0,0 +1,22 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FsUnit" Version="4.0.2" />
<PackageReference Include="NUnit" Version="3.12.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="TestExpression.fs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Expression\Expression.fsproj" />
</ItemGroup>
</Project>