Skip to content

Commit

Permalink
Update URF.Core.Mongo to v6.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Anthony Sneed committed Feb 9, 2022
1 parent a0fda1d commit 856d7a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>1.2.0-beta1</Version>
<Version>1.2.0-beta2</Version>
<Authors>Tony Sneed</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageIcon>eda-logo.jpeg</PackageIcon>
Expand All @@ -12,7 +12,7 @@
<RepositoryUrl>https://github.com/event-driven-dotnet/EventDriven.SchemaRegistry.Mongo.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>schema-registry event-driven event-driven-architecture</PackageTags>
<PackageReleaseNotes>https://github.com/event-driven-dotnet/EventDriven.SchemaRegistry.Mongo/releases/tag/v1.2.0-beta1</PackageReleaseNotes>
<PackageReleaseNotes>https://github.com/event-driven-dotnet/EventDriven.SchemaRegistry.Mongo/releases/tag/v1.2.0-beta2</PackageReleaseNotes>
<PackageId>EventDriven.SchemaRegistry.Mongo</PackageId>
<RootNamespace>EventDriven.SchemaRegistry.Mongo</RootNamespace>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
Expand All @@ -26,11 +26,11 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="EventDriven.DependencyInjection.URF.Mongo" Version="1.1.0-beta3" />
<PackageReference Include="EventDriven.DependencyInjection.URF.Mongo" Version="1.1.0-beta4" />
<PackageReference Include="EventDriven.SchemaRegistry.Abstractions" Version="1.1.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="MongoDB.Driver" Version="2.14.1" />
<PackageReference Include="URF.Core.Mongo" Version="3.1.3" />
<PackageReference Include="URF.Core.Mongo" Version="6.0.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public static IServiceCollection AddMongoSchemaRegistry(this IServiceCollection
services.Configure(configureStateStoreOptions);

// Register IMongoCollection<MongoSchema>
services.AddSingleton(sp =>
services.AddSingleton(_ =>
{
var context = new MongoSchemaRegistryDbContext(new MongoClient(schemaOptions.ConnectionString),
schemaOptions.DatabaseName, schemaOptions.CollectionName);
Expand Down

0 comments on commit 856d7a2

Please sign in to comment.