-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d9cd7a6
commit f19f1c1
Showing
5 changed files
with
56 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 11 additions & 10 deletions
21
samples/Hangfire.Raven.Samples.AspNetCore/Hangfire.Raven.Samples.AspNetCore.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netstandard1.3</TargetFramework> | ||
<Version>3.0.0</Version> | ||
<AssemblyVersion>3.0.0.0</AssemblyVersion> | ||
<FileVersion>3.0.0.0</FileVersion> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Version>3.1.1</Version> | ||
<AssemblyVersion>3.1.1.0</AssemblyVersion> | ||
<FileVersion>3.1.1.0</FileVersion> | ||
<Description>Tests for RavenDB job storage for Hangfire</Description> | ||
<Description>A collection of .Net utilities for JSON</Description> | ||
<Authors>Refreshing Collective <[email protected]></Authors> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>netcoreapp2.0</TargetFramework> | ||
<Version>3.1.0</Version> | ||
<AssemblyVersion>3.1.0.0</AssemblyVersion> | ||
<FileVersion>3.1.0.0</FileVersion> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<Version>3.1.1</Version> | ||
<AssemblyVersion>3.1.1.0</AssemblyVersion> | ||
<FileVersion>3.1.1.0</FileVersion> | ||
<Description>RavenDB job storage for Hangfire</Description> | ||
<Authors>Refreshing Collective <contact@refreshing.io></Authors> | ||
<Company>Refreshing Collective LLC</Company> | ||
<Copyright>Copyright @ Refreshing Collective LLC</Copyright> | ||
<Authors>CadyIO <contact@cady.io></Authors> | ||
<Company>Cady IO</Company> | ||
<Copyright>Copyright @ Cady LLC</Copyright> | ||
<PackageLicenseUrl>http://www.gnu.org/licenses/lgpl-3.0.html</PackageLicenseUrl> | ||
<PackageProjectUrl>https://github.com/RefreshingIO/hangfire-ravendb</PackageProjectUrl> | ||
<PackageProjectUrl>https://github.com/CadyIO/hangfire-ravendb</PackageProjectUrl> | ||
<PackageIconUrl>https://avatars2.githubusercontent.com/u/7880472?v=3&s=200</PackageIconUrl> | ||
<PackageId>Hangfire.Raven</PackageId> | ||
<PackageTags>Hangfire;AspNet;MVC;OWIN;RavenDB;Long-Running;Background;Fire-And-Forget;Delayed;Recurring;Tasks;Jobs;Scheduler;Threading;Queues</PackageTags> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/RefreshingIO/hangfire-ravendb</RepositoryUrl> | ||
<RepositoryUrl>https://github.com/CadyIO/hangfire-ravendb</RepositoryUrl> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DocumentationFile>bin\Debug\netstandard1.4\Hangfire.Raven.xml</DocumentationFile> | ||
<DocumentationFile>bin\Debug\netstandard2.0\Hangfire.Raven.xml</DocumentationFile> | ||
<GenerateSerializationAssemblies></GenerateSerializationAssemblies> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Hangfire.Core" Version="1.6.16" /> | ||
<PackageReference Include="RavenDB.Client" Version="3.5.5-patch-35220" /> | ||
<PackageReference Include="Hangfire.Core" Version="1.6.17" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | ||
<PackageReference Include="RavenDB.Client" Version="3.5.4" /> | ||
</ItemGroup> | ||
|
||
</Project> |