27 lines
714 B
XML
27 lines
714 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="Common.fs" />
|
|
<Compile Include="Htmx.fs" />
|
|
<Compile Include="ViewEngine.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Common\Giraffe.Htmx.Common.fsproj" />
|
|
<ProjectReference Include="..\Htmx\Giraffe.Htmx.fsproj" />
|
|
<ProjectReference Include="..\ViewEngine.Htmx\Giraffe.ViewEngine.Htmx.fsproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Expecto" />
|
|
<PackageReference Include="NSubstitute" />
|
|
<PackageReference Include="FSharp.Core" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|