Skip to content

Commit f0f64d4

Browse files
docs: update AGENTS.md test target from net6.0 to net9.0
The test project was updated to target net9.0 but AGENTS.md still referenced net6.0 in two places. Update to reflect actual state. Also note that FSharp.Core is pinned to 6.0.1 intentionally, to ensure compatibility with the minimum supported version. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent d731039 commit f0f64d4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FSharp.Control.TaskSeq is an F# library providing a `taskSeq` computation expres
77
## Repository Layout
88

99
- `src/FSharp.Control.TaskSeq/` — Main library (netstandard2.1)
10-
- `src/FSharp.Control.TaskSeq.Test/` — xUnit test project (net6.0)
10+
- `src/FSharp.Control.TaskSeq.Test/` — xUnit test project (net9.0)
1111
- `src/FSharp.Control.TaskSeq.SmokeTests/` — Smoke/integration tests
1212
- `src/FSharp.Control.TaskSeq.sln` — Solution file
1313
- `Version.props` — Single source of truth for the package version
@@ -97,7 +97,7 @@ All workflows are in `.github/workflows/`:
9797
- F# source files use `.fs` extension; signature files use `.fsi`.
9898
- `TreatWarningsAsErrors` is enabled for all projects.
9999
- File ordering matters in F# — the `<Compile>` order in `.fsproj` files defines compilation order.
100-
- The library targets `netstandard2.1`; tests target `net6.0` with `FSharp.Core` pinned to `6.0.1`.
100+
- The library targets `netstandard2.1`; tests target `net9.0` with `FSharp.Core` pinned to `6.0.1` (intentional: ensures compatibility with the minimum supported version).
101101
- NuGet packages are output to the `packages/` directory.
102102

103103
## Release Notes

0 commit comments

Comments
 (0)