diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51f3d1b..c758154 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: fetch-depth: 0 # Git Versioning requires a non-shallow clone - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v5 - name: Restore run: dotnet restore -bl:logs/restore.binlog diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 3da26aa..e112971 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -17,7 +17,7 @@ jobs: fetch-depth: 0 # Git Versioning requires a non-shallow clone - name: Setup .NET - uses: actions/setup-dotnet@v3 + uses: actions/setup-dotnet@v5 - name: Restore run: dotnet restore -bl:logs/restore.binlog diff --git a/global.json b/global.json index 3f7f4c9..4a062a8 100644 --- a/global.json +++ b/global.json @@ -1,7 +1,7 @@ { "msbuild-sdks": { "Microsoft.Build.NoTargets": "3.7.56", - "MSTest.Sdk": "3.11.1" + "MSTest.Sdk": "4.1.0" }, "test": { "runner": "Microsoft.Testing.Platform" diff --git a/src/Tests/ReferenceTrimmer.Tests.csproj b/src/Tests/ReferenceTrimmer.Tests.csproj index df507bd..4b62671 100644 --- a/src/Tests/ReferenceTrimmer.Tests.csproj +++ b/src/Tests/ReferenceTrimmer.Tests.csproj @@ -1,6 +1,6 @@  - net8.0 + net10.0 $(NoWarn);0067;1591;CA1861