2024-01-06 22:04:05 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-01-11 01:53:59 +00:00
|
|
|
|
<Compile Include="SupportTypesTests.fs" />
|
|
|
|
|
<Compile Include="DataTypesTests.fs" />
|
|
|
|
|
<Compile Include="ViewModelsTests.fs" />
|
2024-01-21 03:11:27 +00:00
|
|
|
|
<Compile Include="ConvertersTests.fs" />
|
2024-01-06 22:04:05 +00:00
|
|
|
|
<Compile Include="Program.fs" />
|
2024-01-21 03:11:27 +00:00
|
|
|
|
<Content Include="root-weblog.json" />
|
2024-01-06 22:04:05 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Expecto" Version="10.1.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\MyWebLog\MyWebLog.fsproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|