Skip to content

Commit 4b9ef01

Browse files
committed
Update Systemtest dependencies
1 parent 8b4b81d commit 4b9ef01

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ jobs:
2323
- { name: macOS x64, os: macos-13 }
2424
- { name: macOS ARM64, os: macos-14 }
2525
dotnet:
26-
- { name: .NET 6, version: "6.0.x" }
27-
- { name: .NET 7, version: "7.0.x" }
2826
- { name: .NET 8, version: "8.0.x" }
2927
- { name: .NET 9, version: "9.0.x" }
3028

@@ -48,15 +46,15 @@ jobs:
4846
- name: Build SFML.Net
4947
run: dotnet build --configuration Release --no-restore
5048
- name: Test SFML.Net
51-
if: matrix.dotnet.name == '.NET 6'
49+
if: matrix.dotnet.name == '.NET 8'
5250
run: dotnet test --configuration Release --no-restore
5351
- name: Pack SFML.Net
5452
run: dotnet pack --configuration Release -o Publish
5553

5654
- name: Install SFML.Net Examples Dependencies
5755
run: dotnet restore examples/Examples.sln
5856
- name: Build SFML.Net Examples
59-
run: dotnet build --configuration Release --no-restore examples/Examples.sln
57+
run: dotnet build --configuration Release --no-restore examples/Examples.sln
6058

6159
- name: Upload Artifact
6260
uses: actions/upload-artifact@v4

SFML.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1919
SFML.Module.props = SFML.Module.props
2020
SFML.NuGet.props = SFML.NuGet.props
2121
SFML.CodeStyle.props = SFML.CodeStyle.props
22+
.github\workflows\ci.yml = .github\workflows\ci.yml
2223
EndProjectSection
2324
EndProject
2425
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SFML.System.Test", "test\SFML.System.Test\SFML.System.Test.csproj", "{958AC8B0-2D99-4C65-97C1-2979A090C82D}"

test/SFML.System.Test/SFML.System.Test.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77

@@ -11,13 +11,13 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="coverlet.collector" Version="6.0.2">
14+
<PackageReference Include="coverlet.collector" Version="6.0.4">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
19-
<PackageReference Include="xunit" Version="2.9.0" />
20-
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
18+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
19+
<PackageReference Include="xunit" Version="2.9.3" />
20+
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.4">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2323
</PackageReference>

0 commit comments

Comments
 (0)