Skip to content

Commit

Permalink
Assume Rider 2023.3
Browse files Browse the repository at this point in the history
  • Loading branch information
bartelink committed Nov 25, 2023
1 parent 901ebf8 commit 4576038
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Equinox.CosmosStore/CosmosStore.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1333,7 +1333,7 @@ type CosmosStoreCategory<'event, 'state, 'req> =
| AccessStrategy.Custom (isOrigin, transmute) -> isOrigin, true, Choice3Of3 transmute
{ inherit Equinox.Category<'event, 'state, 'req>(name,
StoreCategory<'event, 'state, 'req>(context.StoreClient, context.EnsureStoredProcedureInitialized, codec, fold, initial, isOrigin, checkUnfolds, compressUnfolds, mapUnfolds)
|> Caching.apply Token.isStale caching); __ = () }; val private __: unit // __ can be removed after Rider 2023.2
|> Caching.apply Token.isStale caching) }

module Exceptions =

Expand Down
2 changes: 1 addition & 1 deletion src/Equinox.DynamoStore/DynamoStore.fs
Original file line number Diff line number Diff line change
Expand Up @@ -1305,7 +1305,7 @@ type DynamoStoreCategory<'event, 'state, 'req> =
| AccessStrategy.Custom (isOrigin, transmute) -> isOrigin, true, Choice3Of3 transmute
{ inherit Equinox.Category<'event, 'state, 'req>(name,
StoreCategory<'event, 'state, 'req>(context.StoreClient, codec, fold, initial, isOrigin, checkUnfolds, mapUnfolds)
|> Caching.apply Token.isStale caching); __ = () }; val private __: unit // __ can be removed after Rider 2023.2
|> Caching.apply Token.isStale caching) }

module Exceptions =

Expand Down
2 changes: 1 addition & 1 deletion src/Equinox.EventStoreDb/EventStoreDb.fs
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ type EventStoreCategory<'event, 'state, 'req> =
| _ -> ()
{ inherit Equinox.Category<'event, 'state, 'req>(name,
StoreCategory<'event, 'state, 'req>(context, codec, fold, initial, access)
|> Caching.apply Token.isStale caching); __ = () }; val private __: unit // __ can be removed after Rider 2023.2
|> Caching.apply Token.isStale caching) }

[<RequireQualifiedAccess; NoComparison>]
type Discovery =
Expand Down

0 comments on commit 4576038

Please sign in to comment.