Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frameworks/FSharp/oxpecker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ This includes tests for plaintext, json, fortunes, single query, mutliple querie

**Language**

* F# 8.0
* F# 10.0

**Platforms**

Expand Down
4 changes: 2 additions & 2 deletions frameworks/FSharp/oxpecker/oxpecker.dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
FROM mcr.microsoft.com/dotnet/sdk:10.0 AS build
WORKDIR /app
COPY src/App .
RUN dotnet publish -c Release -o out

FROM mcr.microsoft.com/dotnet/aspnet:9.0 AS runtime
FROM mcr.microsoft.com/dotnet/aspnet:10.0 AS runtime

ENV DOTNET_GCDynamicAdaptationMode=0
ENV DOTNET_ReadyToRun 0
Expand Down
10 changes: 5 additions & 5 deletions frameworks/FSharp/oxpecker/src/App/App.fsproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<EnableDefaultContentItems>false</EnableDefaultContentItems>
</PropertyGroup>

Expand All @@ -13,10 +13,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="FSharp.Core" Version="9.0.100" />
<PackageReference Include="Oxpecker" Version="1.1.1" />
<PackageReference Include="Oxpecker.ViewEngine" Version="1.0.0" />
<PackageReference Include="Npgsql" Version="9.0.1" />
<PackageReference Update="FSharp.Core" Version="10.0.100" />
<PackageReference Include="Oxpecker" Version="1.5.0" />
<PackageReference Include="Oxpecker.ViewEngine" Version="1.1.0" />
<PackageReference Include="Npgsql" Version="9.0.4" />
<PackageReference Include="SpanJson" Version="4.2.1" />
</ItemGroup>
</Project>
Loading