1002c28ddd
- Refactored Repository and RavenStorage to allow injection of a TestRepository (using an in-memory database for unit tests) - Made several fixes to comply with unit tests (notably RavenDistributedLock and RavenJobQueue) - Merged fixes from xinix00 pull request #11 (https://github.com/RefreshingIO/hangfire-ravendb/pull/11)
106 lines
3.2 KiB
JSON
106 lines
3.2 KiB
JSON
{
|
|
"title": "Hangfire.Raven.Examples.AspNetCore",
|
|
"version": "2.1.0",
|
|
"description": "RavenDB job storage for Hangfire - AspNetCore Example",
|
|
"copyright": "Copyright @ 2016 Cady, LLC",
|
|
"authors": [
|
|
"Cady <contact@cady.io>"
|
|
],
|
|
"buildOptions": {
|
|
"allowUnsafe": true,
|
|
"debugType": "portable",
|
|
"emitEntryPoint": true,
|
|
"preserveCompilationContext": true
|
|
},
|
|
"packOptions": {
|
|
"tags": [
|
|
"Hangfire",
|
|
"AspNet",
|
|
"MVC",
|
|
"OWIN",
|
|
"RavenDB",
|
|
"Long-Running",
|
|
"Background",
|
|
"Fire-And-Forget",
|
|
"Delayed",
|
|
"Recurring",
|
|
"Tasks",
|
|
"Jobs",
|
|
"Scheduler",
|
|
"Threading",
|
|
"Queues"
|
|
],
|
|
"iconUrl": "https://avatars2.githubusercontent.com/u/7880472?v=3&s=200",
|
|
"projectUrl": "https://github.com/cady-io/hangfire-ravendb",
|
|
"licenseUrl": "http://www.gnu.org/licenses/lgpl-3.0.html",
|
|
"owners": [
|
|
"Cady <contact@cady.io>"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/cady-io/hangfire-ravendb"
|
|
},
|
|
"summary": "RavenDB job storage for Hangfire - AspNetCore Example"
|
|
},
|
|
"dependencies": {
|
|
"Hangfire.AspNetCore": "1.6.8",
|
|
"Hangfire.Raven": { "target": "project" },
|
|
"Microsoft.NETCore.App": {
|
|
"version": "1.0.1",
|
|
"type": "platform"
|
|
},
|
|
"Microsoft.AspNetCore.Diagnostics": "1.0.0",
|
|
"Microsoft.AspNetCore.Mvc": "1.0.1",
|
|
"Microsoft.AspNetCore.Razor.Tools": {
|
|
"version": "1.0.0-preview2-final",
|
|
"type": "build"
|
|
},
|
|
"Microsoft.AspNetCore.Routing": "1.0.1",
|
|
"Microsoft.AspNetCore.Server.IISIntegration": "1.0.0",
|
|
"Microsoft.AspNetCore.Server.Kestrel": "1.0.1",
|
|
"Microsoft.AspNetCore.StaticFiles": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
|
|
"Microsoft.Extensions.Configuration.Json": "1.0.0",
|
|
"Microsoft.Extensions.Logging": "1.0.0",
|
|
"Microsoft.Extensions.Logging.Console": "1.0.0",
|
|
"Microsoft.Extensions.Logging.Debug": "1.0.0",
|
|
"Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
|
|
"Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0"
|
|
},
|
|
|
|
"tools": {
|
|
"BundlerMinifier.Core": "2.0.238",
|
|
"Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
|
|
"Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final"
|
|
},
|
|
|
|
"frameworks": {
|
|
"netcoreapp1.0": {
|
|
"imports": [
|
|
"dotnet5.6",
|
|
"portable-net45+win8"
|
|
]
|
|
}
|
|
},
|
|
|
|
"runtimeOptions": {
|
|
"configProperties": {
|
|
"System.GC.Server": true
|
|
}
|
|
},
|
|
|
|
"publishOptions": {
|
|
"include": [
|
|
"wwwroot",
|
|
"**/*.cshtml",
|
|
"appsettings.json",
|
|
"web.config"
|
|
]
|
|
},
|
|
|
|
"scripts": {
|
|
"prepublish": [ "bower install", "dotnet bundle" ],
|
|
"postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]
|
|
}
|
|
}
|