Skip to content

Commit 79d2a97

Browse files
committed
aot and pkg version corections
1 parent 14ece13 commit 79d2a97

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

aspnetcore/performance/caching/hybrid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ A concrete implementation of the `HybridCache` abstract class is included in the
237237

238238
* **Serialization**
239239

240-
Native AOT doesn't support runtime reflection-based serialization. If you cache custom types, you must use source generators or explicitly configure serializers that are compatible with AOT, like `System.Text.Json` source generation. For example, with `System.Text.Json`, register a `JsonSerializerContext` for your types and configure it in `AddHybridCache`.
240+
Native AOT doesn't support runtime reflection-based serialization. If you cache custom types, you must use source generators or explicitly configure serializers that are compatible with AOT, like `System.Text.Json` source generation. `HybridCache` is still under development, and simplifying the way to use it with AOT is a high priority for that development. For more information, see pull request [dotnet/extensions#6475](https://github.com/dotnet/extensions/pull/6475)
241241

242242
* **Trimming**
243243

aspnetcore/performance/caching/hybrid/samples/9.x/HCMinimal/HCMinimal.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.0.0" />
10+
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.5.0" />
1111
</ItemGroup>
1212

1313
</Project>

aspnetcore/performance/caching/hybrid/samples/9.x/HCMinimal2/HCMinimal.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.0" />
26-
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="9.0.0" />
27-
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.0" />
28-
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.0.0" />
25+
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="9.0.5" />
26+
<PackageReference Include="Microsoft.Extensions.Caching.SqlServer" Version="9.0.5" />
27+
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="9.0.5" />
28+
<PackageReference Include="Microsoft.Extensions.Caching.Hybrid" Version="9.5.0" />
2929
<PackageReference Include="Google.Protobuf" Version="3.26.1" />
3030
<PackageReference Include="Grpc.Tools" Version="2.63.0" />
3131
<PackageReference Include="Grpc.Core" Version="2.46.6" />

0 commit comments

Comments
 (0)