mirror of
https://github.com/supleed2/ELEC60015-HLP-CW.git
synced 2024-11-10 02:05:48 +00:00
24 lines
863 B
XML
24 lines
863 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||
|
<PropertyGroup>
|
||
|
<OutputType>Exe</OutputType>
|
||
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||
|
</PropertyGroup>
|
||
|
<ItemGroup>
|
||
|
<Compile Include="TestLib.fs" />
|
||
|
<Compile Include="CanvasStates.fs" />
|
||
|
<Compile Include="CanvasStatesWithBuses.fs" />
|
||
|
<Compile Include="CanvasStatesSync.fs" />
|
||
|
<Compile Include="CanvasStatesMemories.fs" />
|
||
|
<Compile Include="WidthInfererTests.fs" />
|
||
|
<Compile Include="SimulatorTests.fs" />
|
||
|
<Compile Include="SimulatorSyncTests.fs" />
|
||
|
<Compile Include="SimulatorMemoriesTests.fs" />
|
||
|
<Compile Include="Tests.fs" />
|
||
|
</ItemGroup>
|
||
|
<!-- Dependencies -->
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Expecto.FsCheck" Version="8.13.1" />
|
||
|
</ItemGroup>
|
||
|
<Import Project="..\.paket\Paket.Restore.targets" />
|
||
|
</Project>
|