Skip to content

Commit

Permalink
Consume the live runtime bits
Browse files Browse the repository at this point in the history
The FrameworkReference in efcore is already set to honor these, but
versions were never set.
  • Loading branch information
ericstj committed May 28, 2024
1 parent 8964caa commit 4d92e69
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 1 deletion.
12 changes: 12 additions & 0 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,18 @@
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>1594d257e7195c6d0d3919210802bc9528eabcb4</Sha>
</Dependency>
<Dependency Name="Microsoft.NETCore.App.Ref" Version="9.0.0-preview.5.24274.5">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>1594d257e7195c6d0d3919210802bc9528eabcb4</Sha>
</Dependency>
<!--
Win-x64 is used here because we have picked an arbitrary runtime identifier to flow the version of the latest NETCore.App runtime.
All Runtime.$rid packages should have the same version.
-->
<Dependency Name="Microsoft.NETCore.App.Runtime.win-x64" Version="9.0.0-preview.5.24274.5">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>1594d257e7195c6d0d3919210802bc9528eabcb4</Sha>
</Dependency>
<Dependency Name="System.Text.Json" Version="9.0.0-preview.5.24274.5">
<Uri>https://github.com/dotnet/runtime</Uri>
<Sha>1594d257e7195c6d0d3919210802bc9528eabcb4</Sha>
Expand Down
2 changes: 2 additions & 0 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
<MicrosoftExtensionsDependencyModelVersion>9.0.0-preview.5.24274.5</MicrosoftExtensionsDependencyModelVersion>
<MicrosoftExtensionsHostFactoryResolverSourcesVersion>9.0.0-preview.5.24274.5</MicrosoftExtensionsHostFactoryResolverSourcesVersion>
<MicrosoftExtensionsLoggingVersion>9.0.0-preview.5.24274.5</MicrosoftExtensionsLoggingVersion>
<MicrosoftNETCoreAppRefVersion>9.0.0-preview.5.24274.5</MicrosoftNETCoreAppRefVersion>
<MicrosoftNETCoreAppRuntimewinx64Version>9.0.0-preview.5.24274.5</MicrosoftNETCoreAppRuntimewinx64Version>
<SystemTextJsonVersion>9.0.0-preview.5.24274.5</SystemTextJsonVersion>
</PropertyGroup>
<PropertyGroup Label="Dependencies from dotnet/arcade">
Expand Down
7 changes: 6 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@
"rollForward": "latestMajor"
},
"tools": {
"dotnet": "9.0.100-preview.3.24204.13"
"dotnet": "9.0.100-preview.3.24204.13",
"runtimes": {
"dotnet": [
"$(MicrosoftNETCoreAppRuntimewinx64Version)"
]
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24266.1",
Expand Down

0 comments on commit 4d92e69

Please sign in to comment.