Skip to content

Commit eaa4447

Browse files
committed
(deps): Bump the microsoft group across 1 directory with 4 updates
Bumps the microsoft group with 4 updates in the /src directory: [Microsoft.Build](https://github.com/dotnet/msbuild), [Microsoft.IO.Redist](https://github.com/dotnet/runtime), [System.Text.Json](https://github.com/dotnet/runtime) and [Microsoft.Build.Utilities.Core](https://github.com/dotnet/msbuild). Updates `Microsoft.Build` from 17.11.4 to 17.12.6 - [Release notes](https://github.com/dotnet/msbuild/releases) - [Changelog](https://github.com/dotnet/msbuild/blob/main/documentation/Changelog.md) - [Commits](dotnet/msbuild@v17.11.4...v17.12.6) Updates `Microsoft.IO.Redist` from 6.1.0 to 6.0.1 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](https://github.com/dotnet/runtime/commits/v6.0.1) Updates `System.Text.Json` from 9.0.0 to 8.0.5 - [Release notes](https://github.com/dotnet/runtime/releases) - [Commits](dotnet/runtime@v9.0.0...v8.0.5) Updates `Microsoft.Build.Utilities.Core` from 17.11.4 to 17.12.6 - [Release notes](https://github.com/dotnet/msbuild/releases) - [Changelog](https://github.com/dotnet/msbuild/blob/main/documentation/Changelog.md) - [Commits](dotnet/msbuild@v17.11.4...v17.12.6) --- updated-dependencies: - dependency-name: Microsoft.Build dependency-type: direct:production update-type: version-update:semver-minor dependency-group: microsoft - dependency-name: Microsoft.IO.Redist dependency-type: direct:production update-type: version-update:semver-minor dependency-group: microsoft - dependency-name: System.Text.Json dependency-type: direct:production update-type: version-update:semver-major dependency-group: microsoft - dependency-name: Microsoft.Build.Utilities.Core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: microsoft ... Signed-off-by: dependabot[bot] <[email protected]> 1c3b09
1 parent 1c3b097 commit eaa4447

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/_unit_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,6 @@ jobs:
3737
-
3838
name: Test Summary
3939
uses: test-summary/[email protected]
40-
if: matrix.dotnetVersion == '8.0'
40+
if: matrix.dotnetVersion == '9.0'
4141
with:
4242
paths: artifacts/test-results/*.results.xml

src/Directory.Packages.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
<PackageVersion Include="JunitXml.TestLogger" Version="4.1.0" />
2424
<PackageVersion Include="MSBuild.ProjectCreation" Version="14.0.0" />
2525
<PackageVersion Include="Microsoft.Bcl.AsyncInterfaces" Version="9.0.0" />
26-
<PackageVersion Include="Microsoft.Build" Version="17.11.4" />
27-
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.11.4" />
26+
<PackageVersion Include="Microsoft.Build" Version="17.12.6" />
27+
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="17.12.6" />
2828
<PackageVersion Include="Microsoft.Extensions.Configuration.CommandLine" Version="9.0.0" />
2929
<PackageVersion Include="Microsoft.Extensions.FileSystemGlobbing" Version="9.0.0" />
3030
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="9.0.0" />

src/GitVersion.MsBuild/msbuild/tools/GitVersion.MsBuild.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
<!-- Validates the target framework and sets the GitVersionTargetFramework property to the target framework that is compatible with the target framework of the project -->
1212
<GitVersionTargetFramework Condition="'$(GitVersionTargetFramework)' == '' and $([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net8.0')) == 'true'">net8.0</GitVersionTargetFramework>
13-
<GitVersionTargetFramework Condition="'$(GitVersionTargetFramework)' == '' and $([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net6.0')) == 'true'">net6.0</GitVersionTargetFramework>
14-
<!-- Fall back to net8.0 if the target framework is not compatible with net6.0 and net8.0 -->
13+
<GitVersionTargetFramework Condition="'$(GitVersionTargetFramework)' == '' and $([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net9.0')) == 'true'">net9.0</GitVersionTargetFramework>
14+
<!-- Fall back to net8.0 if the target framework is not compatible with net9.0 and net8.0 -->
1515
<GitVersionTargetFramework Condition="'$(GitVersionTargetFramework)' == ''">net8.0</GitVersionTargetFramework>
1616
<GitVersionFileExe Condition="'$(GitVersionFileExe)' == ''">dotnet --roll-forward Major &quot;$([MSBuild]::EnsureTrailingSlash($(MSBuildThisFileDirectory)$(GitVersionTargetFramework)))gitversion.dll&quot;</GitVersionFileExe>
1717
<GitVersionAssemblyFile Condition="'$(GitVersionAssemblyFile)' == ''">$([MSBuild]::EnsureTrailingSlash($(MSBuildThisFileDirectory)$(GitVersionTargetFramework)))GitVersion.MsBuild.dll</GitVersionAssemblyFile>

0 commit comments

Comments
 (0)