Skip to content

Commit f29fc2c

Browse files
authored
Merge branch 'dotnet:main' into add-retry-e2e
2 parents 1953327 + 340803c commit f29fc2c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

eng/Version.Details.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -384,9 +384,9 @@
384384
<Uri>https://github.com/dotnet/runtime</Uri>
385385
<Sha>5fd3f22b98cb0d126e4f6328f5a0bf922a532f69</Sha>
386386
</Dependency>
387-
<Dependency Name="System.Drawing.Common" Version="9.0.0-rc.1.24411.4">
387+
<Dependency Name="System.Drawing.Common" Version="10.0.0-alpha.1.24425.1">
388388
<Uri>https://github.com/dotnet/winforms</Uri>
389-
<Sha>382ad3e43a8e9c81fbb738940a33cdc0f6442a59</Sha>
389+
<Sha>42fd47aeb558bb47d5cec60e854da11203df8953</Sha>
390390
</Dependency>
391391
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24421.2">
392392
<Uri>https://github.com/dotnet/arcade</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
<!-- Packages from dotnet/symreader -->
177177
<MicrosoftSourceBuildIntermediatesymreaderVersion>2.2.0-beta.24327.2</MicrosoftSourceBuildIntermediatesymreaderVersion>
178178
<!-- Packages from dotnet/winforms -->
179-
<SystemDrawingCommonVersion>9.0.0-rc.1.24411.4</SystemDrawingCommonVersion>
179+
<SystemDrawingCommonVersion>10.0.0-alpha.1.24425.1</SystemDrawingCommonVersion>
180180
<!-- Packages from dotnet/xdt -->
181181
<MicrosoftWebXdtVersion>9.0.0-preview.24317.2</MicrosoftWebXdtVersion>
182182
<MicrosoftSourceBuildIntermediatexdtVersion>9.0.0-preview.24317.2</MicrosoftSourceBuildIntermediatexdtVersion>

src/Identity/Extensions.Stores/src/IdentityRole.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ public IdentityRole(string roleName) : this()
7272
/// <summary>
7373
/// A random value that should change whenever a role is persisted to the store
7474
/// </summary>
75-
public virtual string? ConcurrencyStamp { get; set; }
75+
public virtual string? ConcurrencyStamp { get; set; } = Guid.NewGuid().ToString();
7676

7777
/// <summary>
7878
/// Returns the name of the role.

0 commit comments

Comments
 (0)