Skip to content

Commit

Permalink
Updating setting guid representation to string
Browse files Browse the repository at this point in the history
chrisdrobison committed Nov 14, 2024
1 parent 661c1bf commit 1c73e1b
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100",
"version": "8.0.400",
"rollForward": "latestPatch"
}
}
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>8.0.0</Version>
<Version>8.0.1</Version>
<Authors>chrisdrobison</Authors>
<AssemblyName>AspNetCore.Authentication.Cookies.MongoDb</AssemblyName>
<RootNamespace>AspNetCore.Authentication.Cookies.MongoDb</RootNamespace>
1 change: 1 addition & 0 deletions src/AspNetCore.Authentication.Cookies.MongoDb/Ticket.cs
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ namespace AspNetCore.Authentication.Cookies.MongoDb
internal class Ticket
{
[BsonId(IdGenerator = typeof(CombGuidGenerator))]
[BsonRepresentation(BsonType.String)]
public Guid Id { get; set; }

public string UserId { get; set; }
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Version>8.0.0</Version>
<Version>8.0.1</Version>
<Authors>chrisdrobison</Authors>
<Description>MongoDB storage support as data protection key store.</Description>
<AssemblyName>AspNetCore.DataProtection.MongoDb</AssemblyName>

0 comments on commit 1c73e1b

Please sign in to comment.