From d2958bf46661fb9454f1cb06e3074fff0c826481 Mon Sep 17 00:00:00 2001 From: Martin521 <29605222+Martin521@users.noreply.github.com> Date: Sat, 14 Feb 2026 12:00:37 +0100 Subject: [PATCH] update to net10, update README --- CHANGELOG.md | 5 +++++ README.md | 8 ++++++++ global.json | 4 ++-- src/Runfs/Runfs.fsproj | 9 +++++---- tests/Runfs.Tests/Runfs.Tests.fsproj | 2 +- 5 files changed, 21 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7164a9..0acc9bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # CHANGELOG +## 1.0.9 + +* changed global and target framework to net10 +* updated README + ## 1.0.8 ### changed diff --git a/README.md b/README.md index bd0e8c3..23ae9a2 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,14 @@ The source file can contain directives to reference libraries and to influence t > Important: runfs is not about F# scripts (.fsx files) that can be run by `dotnet fsi`. See [below](#how-does-runfs-relate-to-fsi). +## Update February 2026 + +[Here](https://amplifyingfsharp.io/sessions/2025-10-03/) is a recording of an Amplifying F# session on the topic. + +Because of a) concerns of parts of the F# community about having two similar tools (`dotnet fsi script.fsx` and `dotnet runfs app.fs`) and b) missing "market pull", I have currently no further plans for this project. + +The tool is still available as dotnet tool and can be useful especially for ad-hoc testing of library projects. + ## Usage ``` diff --git a/global.json b/global.json index 9334ba5..69e101b 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "sdk": { - "version": "9.0.304", + "version": "10.0.100", "rollForward": "latestMinor", - "allowPrerelease": true + "allowPrerelease": false } } \ No newline at end of file diff --git a/src/Runfs/Runfs.fsproj b/src/Runfs/Runfs.fsproj index 6d904bf..a82ee05 100644 --- a/src/Runfs/Runfs.fsproj +++ b/src/Runfs/Runfs.fsproj @@ -2,24 +2,25 @@ Runfs - 1.0.8 + 1.0.9 "dotnet run app.cs" functionality for F#. Copyright 2025 by Martin521 Martin521 and contributors Exe - net9.0 + net10.0 runfs F# True runfs -## 1.0.8 +## 1.0.9 ### changed -* msbuild version (security update) +* changed global and target framework to net10 +* updated README true diff --git a/tests/Runfs.Tests/Runfs.Tests.fsproj b/tests/Runfs.Tests/Runfs.Tests.fsproj index 5ee935c..2263448 100644 --- a/tests/Runfs.Tests/Runfs.Tests.fsproj +++ b/tests/Runfs.Tests/Runfs.Tests.fsproj @@ -1,6 +1,6 @@ - net9.0 + net10.0