Skip to content

Commit

Permalink
Update Creating a new code fix.md (#1331)
Browse files Browse the repository at this point in the history
Update CodeFix docs
  • Loading branch information
edgarfgp authored Dec 21, 2024
1 parent 466fcfc commit 786d6ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Creating a new code fix.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 786d6ee

Please sign in to comment.