Skip to content

Commit 18afc89

Browse files
committed
Update packages
1 parent c5af833 commit 18afc89

File tree

3 files changed

+16
-27
lines changed

3 files changed

+16
-27
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,16 @@ jobs:
3838

3939
steps:
4040
- name: Checkout
41-
uses: actions/checkout@v4
41+
uses: actions/checkout@v5
4242
with:
4343
fetch-depth: 0
4444

45-
- name: Install .NET ${{ env.DotNet8Version }}
45+
- name: Install .NET ${{ env.DotNet8Version }} and ${{ env.DotNet9Version }}
4646
uses: actions/setup-dotnet@v5
4747
with:
4848
dotnet-version: |
4949
${{ env.DotNet8Version }}
50-
51-
- name: Install .NET ${{ env.DotNet9Version }}
52-
uses: actions/setup-dotnet@v5
53-
with:
54-
dotnet-version: ${{ env.DotNet9Version }}
55-
dotnet-quality: 'preview'
50+
${{ env.DotNet9Version }}
5651
5752
- name: Build Solution
5853
run: dotnet build "/Property:Platform=${{ env.BuildPlatform }};Configuration=${{ env.BuildConfiguration }}" "/BinaryLogger:${{ env.ArtifactsDirectoryName }}/build.binlog"

.github/workflows/Official.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ env:
1515
BuildPlatform: 'Any CPU'
1616
ContinuousIntegrationBuild: 'true'
1717
OfficialBuild: 'true'
18-
DotNet8Version: '8.x'
18+
DotNet9Version: '9.x'
1919

2020
jobs:
2121
build:
@@ -24,21 +24,15 @@ jobs:
2424

2525
steps:
2626
- name: Checkout
27-
uses: actions/checkout@v4
27+
uses: actions/checkout@v5
2828
with:
2929
fetch-depth: 0
3030

31-
- name: Install .NET ${{ env.DotNet8Version }}
32-
uses: actions/setup-dotnet@v5
33-
with:
34-
dotnet-version: |
35-
${{ env.DotNet8Version }}
36-
3731
- name: Install .NET ${{ env.DotNet9Version }}
3832
uses: actions/setup-dotnet@v5
3933
with:
40-
dotnet-version: ${{ env.DotNet9Version }}
41-
dotnet-quality: 'preview'
34+
dotnet-version: |
35+
${{ env.DotNet9Version }}
4236
4337
- name: Build Solution
4438
run: dotnet build "/Property:Platform=${{ env.BuildPlatform }};Configuration=${{ env.BuildConfiguration }}" "/BinaryLogger:${{ env.ArtifactsDirectoryName }}\build.binlog"

Directory.Packages.props

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,27 +2,27 @@
22
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
5-
<MicrosoftBuildPackageVersion>17.12.6</MicrosoftBuildPackageVersion>
5+
<MicrosoftBuildPackageVersion>17.14.8</MicrosoftBuildPackageVersion>
66
<MicrosoftBuildPackageVersion Condition="'$(TargetFramework)' == 'net8.0' ">17.11.4</MicrosoftBuildPackageVersion>
7-
<SystemTextJsonVersion>9.0.1</SystemTextJsonVersion>
7+
<SystemTextJsonVersion>9.0.8</SystemTextJsonVersion>
88
</PropertyGroup>
99
<ItemGroup>
1010
<PackageVersion Include="AssemblyShader" Version="1.1.3" />
1111
<PackageVersion Include="Microsoft.Build" Version="$(MicrosoftBuildPackageVersion)" />
1212
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildPackageVersion)" />
13-
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.12.0" />
14-
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="3.3.4" />
15-
<PackageVersion Include="Microsoft.IO.Redist" Version="6.1.0" />
16-
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
17-
<PackageVersion Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.12.2149" />
13+
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="4.14.0" />
14+
<PackageVersion Include="Microsoft.CodeAnalysis.PublicApiAnalyzers" Version="4.14.0" />
15+
<PackageVersion Include="Microsoft.IO.Redist" Version="6.1.3" />
16+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.14.1" />
17+
<PackageVersion Include="Microsoft.VisualStudio.Setup.Configuration.Interop" Version="3.14.2075" />
1818
<PackageVersion Include="Shouldly" Version="4.3.0" />
1919
<PackageVersion Include="System.IO.Compression" Version="4.3.0" />
2020
<PackageVersion Include="System.Text.Json" Version="$(SystemTextJsonVersion)" />
2121
<PackageVersion Include="xunit" Version="2.9.3" />
22-
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.1" />
22+
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.4" />
2323
</ItemGroup>
2424
<ItemGroup>
25-
<GlobalPackageReference Include="Microsoft.Build.Artifacts" Version="6.1.48" />
25+
<GlobalPackageReference Include="Microsoft.Build.Artifacts" Version="6.1.63" />
2626
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
2727
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.7.115" />
2828
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.556" />

0 commit comments

Comments
 (0)