Skip to content

Commit 1a5ac3c

Browse files
committed
Final change for package name
1 parent 14a2310 commit 1a5ac3c

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

README.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,6 @@ MongoDB Job Store for Quartz.NET
22
================================
33
Thanks to @chrisdrobison for handing over this project.
44

5-
## Package name
6-
**New: Quartz.Store.MongoDB**
7-
8-
Old: Quartz.Spi.MongoDbJobStore
9-
105
## Basic Usage
116

127
```cs
@@ -26,5 +21,5 @@ return scheduler.GetScheduler();
2621
## Nuget
2722

2823
```
29-
Install-Package Quartz.Store.MongoDB
24+
Install-Package Quartz.Spi.MongoDbJobStore
3025
```

src/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22

33
<PropertyGroup>
4-
<RootNamespace>Quartz.Store.MongoDB</RootNamespace>
4+
<RootNamespace>Quartz.Spi.MongoDbJobStore</RootNamespace>
55
<LangVersion>9.0</LangVersion>
66
<IsPackable>false</IsPackable>
77
<IsPublishable>false</IsPublishable>
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020

2121
<PropertyGroup>
22-
<Product>Quartz.Store.MongoDB</Product>
22+
<Product>Quartz.Spi.MongoDbJobStore</Product>
2323
<Authors>Gabriel Lucaci</Authors>
2424
<Company>Gabriel Lucaci</Company>
2525
<Copyright>Copyright © 2021 Gabriel Lucaci</Copyright>

src/Quartz.Spi.MongoDbJobStore/Quartz.Spi.MongoDbJobStore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net452;net462;netstandard2.0</TargetFrameworks>
5-
<AssemblyName>Quartz.Store.MongoDB</AssemblyName>
5+
<AssemblyName>Quartz.Spi.MongoDbJobStore</AssemblyName>
66
<IsPackable>true</IsPackable>
77
</PropertyGroup>
88

tests/Quartz.Spi.MongoDbJobStore.Tests/Quartz.Spi.MongoDbJobStore.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
<PropertyGroup>
44
<TargetFrameworks>net452;net462;netcoreapp2.0</TargetFrameworks>
55
<IsPackable>false</IsPackable>
6-
<RootNamespace>Quartz.Store.MongoDB.Tests</RootNamespace>
7-
<AssemblyName>Quartz.Store.MongoDB.Tests</AssemblyName>
6+
<RootNamespace>Quartz.Spi.MongoDbJobStore.Tests</RootNamespace>
7+
<AssemblyName>Quartz.Spi.MongoDbJobStore.Tests</AssemblyName>
88
</PropertyGroup>
99

1010
<ItemGroup>

0 commit comments

Comments
 (0)