Skip to content

Commit 77bc009

Browse files
committed
Merged PR 54883: Update global.json
Update global.json ---- #### AI description (iteration 1) #### PR Classification This pull request performs a dependency update by revising version tokens in the global configuration. #### PR Summary The pull request updates `global.json` to replace outdated version tokens with new distribution package references for ASP.NET Core and .NET dependencies. - `global.json`: Replaced `$(MicrosoftAspNetCoreApp100Version)` with `$(VSRedistCommonAspNetCoreSharedFrameworkx64100Version)` and `$(MicrosoftNETCoreApp100Version)` with `$(VSRedistCommonNetCoreSharedFrameworkx64100Version)` for both default and x86 sections. <!-- GitOpsUserAgent=GitOps.Apps.Server.pullrequestcopilot -->
1 parent 51bc811 commit 77bc009

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
<PropertyGroup Label="Runtime Versions">
6969
<MicrosoftAspNetCoreApp80Version>$(MicrosoftNETCoreApp80Version)</MicrosoftAspNetCoreApp80Version>
7070
<MicrosoftAspNetCoreApp90Version>$(MicrosoftNETCoreApp90Version)</MicrosoftAspNetCoreApp90Version>
71-
<MicrosoftNETCoreApp100Version>$(VSRedistCommonNetCoreSharedFrameworkx64100Version)</MicrosoftNETCoreApp100Version>
72-
<MicrosoftAspNetCoreApp100Version>$(VSRedistCommonAspNetCoreSharedFrameworkx64100Version)</MicrosoftAspNetCoreApp100Version>
71+
<MicrosoftNETCoreApp100Version>$(MicrosoftNETCoreAppRuntimewinx64Version)</MicrosoftNETCoreApp100Version>
72+
<MicrosoftAspNetCoreApp100Version>$(MicrosoftAspNetCoreAppRuntimewinx64Version)</MicrosoftAspNetCoreApp100Version>
7373
</PropertyGroup>
7474
<PropertyGroup Label="SDK Versions">
7575
<!-- Use a non-final versioned sentinel package for installation of specific SDK version. -->

global.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,22 @@
55
"aspnetcore": [
66
"$(MicrosoftAspNetCoreApp80Version)",
77
"$(MicrosoftAspNetCoreApp90Version)",
8-
"$(MicrosoftAspNetCoreApp100Version)"
8+
"$(VSRedistCommonAspNetCoreSharedFrameworkx64100Version)"
99
],
1010
"aspnetcore/x86": [
1111
"$(MicrosoftAspNetCoreApp80Version)",
1212
"$(MicrosoftAspNetCoreApp90Version)",
13-
"$(MicrosoftAspNetCoreApp100Version)"
13+
"$(VSRedistCommonAspNetCoreSharedFrameworkx64100Version)"
1414
],
1515
"dotnet": [
1616
"$(MicrosoftNETCoreApp80Version)",
1717
"$(MicrosoftNETCoreApp90Version)",
18-
"$(MicrosoftNETCoreApp100Version)"
18+
"$(VSRedistCommonNetCoreSharedFrameworkx64100Version)"
1919
],
2020
"dotnet/x86": [
2121
"$(MicrosoftNETCoreApp80Version)",
2222
"$(MicrosoftNETCoreApp90Version)",
23-
"$(MicrosoftNETCoreApp100Version)"
23+
"$(VSRedistCommonNetCoreSharedFrameworkx64100Version)"
2424
]
2525
}
2626
},

0 commit comments

Comments
 (0)