Skip to content

Commit 2bf0696

Browse files
stan-szdfederm
andauthored
.Net 10 and latest MSTest (#124)
Co-authored-by: David Federman <david.federman@outlook.com>
1 parent 27b8adc commit 2bf0696

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
fetch-depth: 0 # Git Versioning requires a non-shallow clone
2020

2121
- name: Setup .NET
22-
uses: actions/setup-dotnet@v3
22+
uses: actions/setup-dotnet@v5
2323

2424
- name: Restore
2525
run: dotnet restore -bl:logs/restore.binlog

.github/workflows/pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fetch-depth: 0 # Git Versioning requires a non-shallow clone
1818

1919
- name: Setup .NET
20-
uses: actions/setup-dotnet@v3
20+
uses: actions/setup-dotnet@v5
2121

2222
- name: Restore
2323
run: dotnet restore -bl:logs/restore.binlog

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"msbuild-sdks": {
33
"Microsoft.Build.NoTargets": "3.7.56",
4-
"MSTest.Sdk": "3.11.1"
4+
"MSTest.Sdk": "4.1.0"
55
},
66
"test": {
77
"runner": "Microsoft.Testing.Platform"

src/Tests/ReferenceTrimmer.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="MSTest.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net10.0</TargetFramework>
44
<NoWarn>$(NoWarn);0067;1591;CA1861</NoWarn>
55

66
<!-- Don't compile anything from the test data dir -->

0 commit comments

Comments
 (0)