Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ var mongoConnStr = ...; // Get MongoDB connection string from somewhere.
services.AddSimpleRecurringJobs(b => b.UseMongoJobStore(mongoConnStr, o => o.Database = "MyAppDb").WithJob<SimpleJob>());
```

Note: If using v2.x of the `MongoDB.Driver` nuget package, you must use v1.1.36 of `SimpleRecurringJobs.Mongo`. Later versions will use `MongoDB.Driver` v3 which is incompatible with earlier versions.

## Postgres
[![NuGet version (SimpleRecurringJobs.Postgres)](https://img.shields.io/nuget/v/SimpleRecurringJobs.Postgres.svg?style=flat-square)](https://www.nuget.org/packages/SimpleRecurringJobs.Postgres/)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
<PackageReference Include="MongoDB.Driver" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading