- Drop `hx-sse` and `hx-ws` attributes - Drop explicit .NET 7 support - Update deps to latest versions
27 lines
764 B
XML
27 lines
764 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" Version="10.2.1" />
|
|
<PackageReference Include="NSubstitute" Version="5.1.0" />
|
|
<PackageReference Update="FSharp.Core" Version="8.0.300" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|