This repository has been archived by the owner on Feb 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from imranmomin/develop
initial release
- Loading branch information
Showing
41 changed files
with
2,907 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd"> | ||
<metadata> | ||
<id>Hangfire.Firebase</id> | ||
<version>1.0.0-beta</version> | ||
<authors>Imran Momin</authors> | ||
<owners>Imran Momin</owners> | ||
<licenseUrl>https://github.com/imranmomin/Hangfire.AzureDocumentDB/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/imranmomin/Hangfire.AzureDocumentDB</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>This repo will add Microsoft Azure DocumentDB storage provider for Hangfire</description> | ||
<copyright>Copyright 2017</copyright> | ||
<tags>Hangfire Azure DocumentDB</tags> | ||
<language>en-US</language> | ||
<dependencies> | ||
<group targetFramework=".NETFramework4.5"> | ||
<dependency id="Microsoft.Azure.DocumentDB" version="1.13.2" /> | ||
<dependency id="Hangfire.Core" version="1.6.12" /> | ||
</group> | ||
</dependencies> | ||
</metadata> | ||
<files> | ||
<file src="Hangfire.AzureDocumentDB\bin\Release\Hangfire.AzureDocumentDB.dll" target="lib\net45\Hangfire.AzureDocumentDB.dll" /> | ||
<file src="Hangfire.AzureDocumentDB\bin\Release\Hangfire.AzureDocumentDB.XML" target="lib\net45\Hangfire.AzureDocumentDB.XML" /> | ||
</files> | ||
</package> |
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
|
||
Microsoft Visual Studio Solution File, Format Version 12.00 | ||
# Visual Studio 14 | ||
VisualStudioVersion = 14.0.25123.0 | ||
MinimumVisualStudioVersion = 10.0.40219.1 | ||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Hangfire.AzureDocumentDB", "Hangfire.AzureDocumentDB\Hangfire.AzureDocumentDB.csproj", "{E0AD3801-5504-49A7-80C6-8B4373DDE0E5}" | ||
EndProject | ||
Global | ||
GlobalSection(SolutionConfigurationPlatforms) = preSolution | ||
Debug|Any CPU = Debug|Any CPU | ||
Release|Any CPU = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(ProjectConfigurationPlatforms) = postSolution | ||
{E0AD3801-5504-49A7-80C6-8B4373DDE0E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU | ||
{E0AD3801-5504-49A7-80C6-8B4373DDE0E5}.Debug|Any CPU.Build.0 = Debug|Any CPU | ||
{E0AD3801-5504-49A7-80C6-8B4373DDE0E5}.Release|Any CPU.ActiveCfg = Release|Any CPU | ||
{E0AD3801-5504-49A7-80C6-8B4373DDE0E5}.Release|Any CPU.Build.0 = Release|Any CPU | ||
EndGlobalSection | ||
GlobalSection(SolutionProperties) = preSolution | ||
HideSolutionNode = FALSE | ||
EndGlobalSection | ||
EndGlobal |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<configuration> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" /> | ||
</startup> | ||
<runtime> | ||
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> | ||
<dependentAssembly> | ||
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" /> | ||
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" /> | ||
</dependentAssembly> | ||
</assemblyBinding> | ||
</runtime> | ||
</configuration> |
Oops, something went wrong.