Skip to content
This repository has been archived by the owner on Feb 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #1 from imranmomin/develop
Browse files Browse the repository at this point in the history
initial release
  • Loading branch information
imranmomin authored Apr 26, 2017
2 parents 9bb9c52 + bbaa535 commit c4351a5
Show file tree
Hide file tree
Showing 41 changed files with 2,907 additions and 1 deletion.
26 changes: 26 additions & 0 deletions Hangfire.AzureDocumentDB.nuspec
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>
22 changes: 22 additions & 0 deletions Hangfire.AzureDocumentDB.sln
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
14 changes: 14 additions & 0 deletions Hangfire.AzureDocumentDB/App.config
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>
Loading

0 comments on commit c4351a5

Please sign in to comment.