21 lines
406 B
XML
21 lines
406 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Compile Include="Domain.fs" />
|
|||
|
<Compile Include="Program.fs" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Expecto" Version="10.1.0" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\MyWebLog\MyWebLog.fsproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|