diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 8567fc7..3387087 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -27,8 +27,8 @@ dotnet build SharedCode.sln # Run all tests dotnet test SharedCode.sln -# Run tests with verbose output and GitHub Actions logging -dotnet test --logger GitHubActions --verbosity normal SharedCode.sln +# Run tests with verbose output +dotnet test SharedCode.sln --verbosity normal ``` ## Code Conventions diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b94afb..57070d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: dotnet-version: 10.0.x - name: Run Tests - run: dotnet test --logger GitHubActions --verbosity normal SharedCode.sln + run: dotnet test SharedCode.sln --verbosity normal semantic-release: needs: test diff --git a/global.json b/global.json new file mode 100644 index 0000000..3140116 --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "test": { + "runner": "Microsoft.Testing.Platform" + } +}