diff --git a/src/EventDriven.SchemaRegistry.Mongo/EventDriven.SchemaRegistry.Mongo.csproj b/src/EventDriven.SchemaRegistry.Mongo/EventDriven.SchemaRegistry.Mongo.csproj index 944a90d..cc02403 100644 --- a/src/EventDriven.SchemaRegistry.Mongo/EventDriven.SchemaRegistry.Mongo.csproj +++ b/src/EventDriven.SchemaRegistry.Mongo/EventDriven.SchemaRegistry.Mongo.csproj @@ -3,7 +3,7 @@ net6.0 true - 1.2.0-beta1 + 1.2.0-beta2 Tony Sneed MIT eda-logo.jpeg @@ -12,7 +12,7 @@ https://github.com/event-driven-dotnet/EventDriven.SchemaRegistry.Mongo.git git schema-registry event-driven event-driven-architecture - https://github.com/event-driven-dotnet/EventDriven.SchemaRegistry.Mongo/releases/tag/v1.2.0-beta1 + https://github.com/event-driven-dotnet/EventDriven.SchemaRegistry.Mongo/releases/tag/v1.2.0-beta2 EventDriven.SchemaRegistry.Mongo EventDriven.SchemaRegistry.Mongo True @@ -26,11 +26,11 @@ - + - + diff --git a/src/EventDriven.SchemaRegistry.Mongo/ServiceCollectionExtensions.cs b/src/EventDriven.SchemaRegistry.Mongo/ServiceCollectionExtensions.cs index 7a18e89..89031d5 100644 --- a/src/EventDriven.SchemaRegistry.Mongo/ServiceCollectionExtensions.cs +++ b/src/EventDriven.SchemaRegistry.Mongo/ServiceCollectionExtensions.cs @@ -48,7 +48,7 @@ public static IServiceCollection AddMongoSchemaRegistry(this IServiceCollection services.Configure(configureStateStoreOptions); // Register IMongoCollection - services.AddSingleton(sp => + services.AddSingleton(_ => { var context = new MongoSchemaRegistryDbContext(new MongoClient(schemaOptions.ConnectionString), schemaOptions.DatabaseName, schemaOptions.CollectionName);