Skip to content

Commit 89ad8ec

Browse files
authored
Merge branch 'main' into fix-extensions-hybrid
2 parents afacb11 + 3673f71 commit 89ad8ec

File tree

6 files changed

+277
-279
lines changed

6 files changed

+277
-279
lines changed

eng/Version.Details.xml

Lines changed: 183 additions & 183 deletions
Large diffs are not rendered by default.

eng/Versions.props

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

global.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"sdk": {
3-
"version": "10.0.100-preview.6.25315.102"
3+
"version": "10.0.100-preview.7.25322.101"
44
},
55
"tools": {
6-
"dotnet": "10.0.100-preview.6.25315.102",
6+
"dotnet": "10.0.100-preview.7.25322.101",
77
"runtimes": {
88
"dotnet/x86": [
99
"$(MicrosoftInternalRuntimeAspNetCoreTransportVersion)"
@@ -27,9 +27,9 @@
2727
"jdk": "latest"
2828
},
2929
"msbuild-sdks": {
30-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25351.105",
31-
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25351.105",
32-
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25351.105",
30+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25358.102",
31+
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25358.102",
32+
"Microsoft.DotNet.SharedFramework.Sdk": "10.0.0-beta.25358.102",
3333
"Microsoft.Build.NoTargets": "3.7.0",
3434
"Microsoft.Build.Traversal": "3.4.0"
3535
}

src/Components/Components/src/PersistentStateValueProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ internal sealed class PersistentStateValueProvider(PersistentComponentState stat
1919
{
2020
private static readonly ConcurrentDictionary<(string, string, string), byte[]> _keyCache = new();
2121
private static readonly ConcurrentDictionary<(Type, string), PropertyGetter> _propertyGetterCache = new();
22-
private readonly ConcurrentDictionary<Type, IPersistentComponentStateSerializer?> _serializerCache = new();
22+
private static readonly ConcurrentDictionary<Type, IPersistentComponentStateSerializer?> _serializerCache = new();
2323

2424
private readonly Dictionary<ComponentState, PersistingComponentStateSubscription> _subscriptions = [];
2525

src/Framework/App.Ref/src/Microsoft.AspNetCore.App.Ref.sfxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,6 @@
3838
<GenerateInstallers Condition="'$(DotNetBuildSourceOnly)' != 'true'">true</GenerateInstallers>
3939
<BuildDebPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildDebPackage>
4040
<BuildRpmPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildRpmPackage>
41-
<UseArcadeRpmTooling>true</UseArcadeRpmTooling>
4241
<GenerateVSInsertionPackages>true</GenerateVSInsertionPackages>
4342
</PropertyGroup>
4443

src/Framework/App.Runtime/src/Microsoft.AspNetCore.App.Runtime.sfxproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
<GenerateInstallers Condition="'$(DotNetBuildSourceOnly)' != 'true'">true</GenerateInstallers>
4747
<BuildDebPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildDebPackage>
4848
<BuildRpmPackage Condition="'$(RuntimeIdentifier)' == 'linux-x64' or '$(RuntimeIdentifier)' == 'linux-arm64'">true</BuildRpmPackage>
49-
<UseArcadeRpmTooling>true</UseArcadeRpmTooling>
5049
<GenerateVSInsertionPackages>true</GenerateVSInsertionPackages>
5150
</PropertyGroup>
5251

0 commit comments

Comments
 (0)