Skip to content

Commit 27bcff5

Browse files
committed
update deps
1 parent 478cbd2 commit 27bcff5

15 files changed

Lines changed: 61 additions & 138 deletions

File tree

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup .NET Core SDK
2121
uses: actions/setup-dotnet@v5
2222
with:
23-
dotnet-version: '9.0.x'
23+
dotnet-version: '10.0.x'
2424
- name: Initialize CodeQL
2525
uses: github/codeql-action/init@v4
2626
with:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup .NET
2424
uses: actions/setup-dotnet@v5
2525
with:
26-
dotnet-version: '9.0.x'
26+
dotnet-version: '10.0.x'
2727
- name: Create packages
2828
run: dotnet pack --configuration Release --output ./packages
2929
- name: Upload a Build Artifact

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
fetch-depth: 0
2424
- uses: actions/setup-dotnet@v5
2525
with:
26-
dotnet-version: '9.0.x'
26+
dotnet-version: '10.0.x'
2727

2828
- name: Build & Test in Release Mode
2929
run: dotnet test --configuration Release --logger "GitHubActions"

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<ItemGroup>
3030
<PackageReference Include="Nerdbank.GitVersioning" Condition="!Exists('packages.config')">
3131
<PrivateAssets>all</PrivateAssets>
32-
<Version>3.8.118</Version>
32+
<Version>3.9.50</Version>
3333
</PackageReference>
3434
<PackageReference Include="SauceControl.InheritDoc" Version="2.0.2" PrivateAssets="all" />
3535
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">

PetroGlyphGameInfrastructure.sln

Lines changed: 0 additions & 93 deletions
This file was deleted.

PetroGlyphGameInfrastructure.slnx

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Solution>
2+
<Folder Name="/src/">
3+
<Project Path="src/AET.SteamAbstraction/AET.SteamAbstraction.csproj" />
4+
<Project Path="src/PG.StarWarsGame.Infrastructure.Clients.Steam/PG.StarWarsGame.Infrastructure.Clients.Steam.csproj" />
5+
<Project Path="src/PG.StarWarsGame.Infrastructure/PG.StarWarsGame.Infrastructure.csproj" />
6+
</Folder>
7+
<Folder Name="/test/">
8+
<Project Path="test/AET.SteamAbstraction.Test/AET.SteamAbstraction.Test.csproj" />
9+
<Project Path="test/AET.SteamAbstraction.Testing/AET.SteamAbstraction.Testing.csproj" />
10+
<Project Path="test/PG.StarWarsGame.Infrastructure.Clients.Steam.Test/PG.StarWarsGame.Infrastructure.Clients.Steam.Test.csproj" />
11+
<Project Path="test/PG.StarWarsGame.Infrastructure.Test/PG.StarWarsGame.Infrastructure.Test.csproj" />
12+
<Project Path="test/PG.StarWarsGame.Infrastructure.Testing/PG.StarWarsGame.Infrastructure.Testing.csproj" />
13+
<Project Path="test/PG.TestingUtilities/PG.TestingUtilities.csproj" />
14+
</Folder>
15+
<Project Path="sampleApp/SampleApplication.csproj" />
16+
</Solution>

sampleApp/SampleApplication.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0-windows</TargetFramework>
5+
<TargetFramework>net10.0-windows</TargetFramework>
66
<IsPackable>false</IsPackable>
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
10+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
1111
</ItemGroup>
1212

1313
<ItemGroup>

src/AET.SteamAbstraction/AET.SteamAbstraction.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@
2525
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" />
2626
<PackageReference Include="AnakinRaW.CommonUtilities" Version="12.3.8" />
2727
<PackageReference Include="AnakinRaW.CommonUtilities.FileSystem" Version="12.3.8" />
28-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
29-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
28+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
29+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
3030
<PackageReference Include="Nullable" Version="1.3.1">
3131
<PrivateAssets>all</PrivateAssets>
3232
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3333
</PackageReference>
34-
<PackageReference Include="System.Text.Json" Version="9.0.9" />
34+
<PackageReference Include="System.Text.Json" Version="10.0.0" />
3535
</ItemGroup>
3636
</Project>

src/PG.StarWarsGame.Infrastructure/PG.StarWarsGame.Infrastructure.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@
3636
</PackageReference>
3737
<PackageReference Include="semver" Version="3.0.0" />
3838
<PackageReference Include="HtmlAgilityPack" Version="1.12.4" />
39-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.9" />
40-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.9" />
39+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
40+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.0" />
4141
<PackageReference Include="QuikGraph" Version="2.5.0" PrivateAssets="compile" />
42-
<PackageReference Include="System.Text.Json" Version="9.0.9" />
42+
<PackageReference Include="System.Text.Json" Version="10.0.0" />
4343
</ItemGroup>
4444
</Project>

test/AET.SteamAbstraction.Test/AET.SteamAbstraction.Test.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@
55
</PropertyGroup>
66

77
<PropertyGroup>
8-
<TargetFrameworks>net9.0</TargetFrameworks>
9-
<TargetFrameworks Condition="!$([MSBuild]::IsOsUnixLike())">$(TargetFrameworks);net48</TargetFrameworks>
8+
<TargetFrameworks>net10.0</TargetFrameworks>
9+
<TargetFrameworks Condition="!$([MSBuild]::IsOsUnixLike())">$(TargetFrameworks);net481</TargetFrameworks>
1010
<IsPackable>false</IsPackable>
1111
<IsTestable>true</IsTestable>
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="GitHubActionsTestLogger" Version="2.4.1">
15+
<PackageReference Include="GitHubActionsTestLogger" Version="3.0.1">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
</PackageReference>
19-
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.9" />
20-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
21-
<PackageReference Include="Testably.Abstractions.Testing" Version="4.3.9" />
19+
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="10.0.0" />
20+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
21+
<PackageReference Include="Testably.Abstractions.Testing" Version="5.0.1" />
2222
<PackageReference Include="xunit" Version="2.9.3" />
2323
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
2424
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

0 commit comments

Comments
 (0)