From 786d6eede539e1591f68599915d945a17e3e3c90 Mon Sep 17 00:00:00 2001 From: Edgar Gonzalez Date: Sat, 21 Dec 2024 23:41:36 +0100 Subject: [PATCH] Update Creating a new code fix.md (#1331) Update CodeFix docs --- docs/Creating a new code fix.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Creating a new code fix.md b/docs/Creating a new code fix.md index 88d38b032..1095a9fbd 100644 --- a/docs/Creating a new code fix.md +++ b/docs/Creating a new code fix.md @@ -34,12 +34,12 @@ The unit test file contains a [single focused test](https://github.com/haf/expec 1. Using the `dotnet test` command: ```bash -dotnet test -f net6.0 ./test/FsAutoComplete.Tests.Lsp/FsAutoComplete.Tests.Lsp.fsproj +dotnet test -f net8.0 ./test/FsAutoComplete.Tests.Lsp/FsAutoComplete.Tests.Lsp.fsproj ``` 2. Alternatively, using the `dotnet run` command: ```bash -dotnet run -f net6.0 --project ./test/FsAutoComplete.Tests.Lsp/FsAutoComplete.Tests.Lsp.fsproj +dotnet run -f net8.0 --project ./test/FsAutoComplete.Tests.Lsp/FsAutoComplete.Tests.Lsp.fsproj ``` This comprehensive approach ensures that the newly introduced code fix is properly integrated, tested, and ready for seamless integration into the FSAutocomplete environment.