forked from HangfireIO/Hangfire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHangfire.AspNetCore.nuspec
114 lines (102 loc) · 5.98 KB
/
Hangfire.AspNetCore.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0"?>
<package>
<metadata>
<id>Hangfire.AspNetCore</id>
<version>0.0.0</version>
<title>Hangfire ASP.NET Core Support</title>
<authors>Sergey Odinokov</authors>
<owners>odinserj</owners>
<projectUrl>https://www.hangfire.io/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<licenseUrl>https://raw.github.com/HangfireIO/Hangfire/master/LICENSE.md</licenseUrl>
<description>ASP.NET Core support for Hangfire (background job system for ASP.NET applications).</description>
<copyright>Copyright © 2017-2019 Sergey Odinokov</copyright>
<tags>hangfire aspnetcore</tags>
<releaseNotes>https://www.hangfire.io/blog/
1.7.8
• Added – `IAppBuilder.MapHangfireDashboard` method for ASP.NET Core 3.0 endpoint routing (by @kendaleiv).
• Changed – Add explicit `netcoreapp3.0` target with "Microsoft.AspNetCore.App" framework reference (by @stebueh).
1.7.7
• Fixed – Add missing `AddHangfireServer` method for .NET Framework 4.6.1 and higher (by @danstur).
1.7.5
• Fixed – Add missing overload for the `AddHangfireServer` method with "options" action.
1.7.2
• Added – Automatically resolve `ITimeZoneResolver` service for the `DashboardOptions.TimeZoneResolver` property.
• Fixed – Allow to resolve `IJobFilterProvider` service from the `AddHangfire` method.
1.7.0
• Added – Full .NET Core 2.0 support by explicitly targeting .NET Standard 2.0.
• Added – An overloaded AddHangfire method with `IServiceProvider` parameter (by @ericgreenmix and @denis-ivanov).
• Added – `BackgroundJobServerHostedService` class based on `IHostedService` interface.
• Added – `IServiceCollection.AddHangfireServer` method to register the server during configuration.
• Changed – Custom services for factory, performer and state changer interfaces will be picked up only when all of them registered.
</releaseNotes>
<dependencies>
<group targetFramework="net451">
<dependency id="Microsoft.AspNetCore.Hosting.Abstractions" version="1.0.0" />
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.0.0" />
<dependency id="Microsoft.AspNetCore.Antiforgery" version="1.0.0" />
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.0" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="1.0.0" />
<dependency id="Hangfire.Core" version="[0.0.0]" />
</group>
<group targetFramework="netstandard1.3">
<dependency id="NETStandard.Library" version="1.6.0" />
<dependency id="System.ComponentModel" version="4.0.1" />
<dependency id="Microsoft.AspNetCore.Hosting.Abstractions" version="1.0.0" />
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="1.0.0" />
<dependency id="Microsoft.AspNetCore.Antiforgery" version="1.0.0" />
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="1.0.0" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="1.0.0" />
<dependency id="Hangfire.Core" version="[0.0.0]" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.AspNetCore.Hosting.Abstractions" version="2.0.0" />
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="2.0.0" />
<dependency id="Microsoft.AspNetCore.Antiforgery" version="2.0.0" />
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="2.0.0" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="2.0.0" />
<dependency id="Hangfire.Core" version="[0.0.0]" />
</group>
<group targetFramework="net461">
<dependency id="Microsoft.AspNetCore.Hosting.Abstractions" version="2.0.0" />
<dependency id="Microsoft.AspNetCore.Http.Abstractions" version="2.0.0" />
<dependency id="Microsoft.AspNetCore.Antiforgery" version="2.0.0" />
<dependency id="Microsoft.Extensions.DependencyInjection.Abstractions" version="2.0.0" />
<dependency id="Microsoft.Extensions.Logging.Abstractions" version="2.0.0" />
<dependency id="Hangfire.Core" version="[0.0.0]" />
</group>
<group targetFramework="netcoreapp3.0">
<dependency id="Hangfire.Core" version="[0.0.0]" />
</group>
</dependencies>
<frameworkReferences>
<group targetFramework=".NETCoreApp3.0">
<frameworkReference name="Microsoft.AspNetCore.App" />
</group>
</frameworkReferences>
</metadata>
<files>
<file src="net451\Hangfire.AspNetCore.dll" target="lib\net451" />
<file src="net451\Hangfire.AspNetCore.xml" target="lib\net451" />
<file src="net451\Hangfire.AspNetCore.pdb" target="lib\net451" />
<file src="netstandard1.3\Hangfire.AspNetCore.dll" target="lib\netstandard1.3" />
<file src="netstandard1.3\Hangfire.AspNetCore.xml" target="lib\netstandard1.3" />
<file src="netstandard1.3\Hangfire.AspNetCore.pdb" target="lib\netstandard1.3" />
<file src="netstandard2.0\Hangfire.AspNetCore.dll" target="lib\netstandard2.0" />
<file src="netstandard2.0\Hangfire.AspNetCore.xml" target="lib\netstandard2.0" />
<file src="netstandard2.0\Hangfire.AspNetCore.pdb" target="lib\netstandard2.0" />
<file src="net461\Hangfire.AspNetCore.dll" target="lib\net461" />
<file src="net461\Hangfire.AspNetCore.xml" target="lib\net461" />
<file src="net461\Hangfire.AspNetCore.pdb" target="lib\net461" />
<file src="netcoreapp3.0\Hangfire.AspNetCore.dll" target="lib\netcoreapp3.0" />
<file src="netcoreapp3.0\Hangfire.AspNetCore.xml" target="lib\netcoreapp3.0" />
<file src="netcoreapp3.0\Hangfire.AspNetCore.pdb" target="lib\netcoreapp3.0" />
<file src="..\src\Hangfire.AspNetCore\**\*.cs" target="src" exclude="**\obj*\**\*.cs" />
<file src="LICENSE.md" />
<file src="NOTICES" />
<file src="COPYING" />
<file src="COPYING.LESSER" />
<file src="LICENSE_STANDARD" />
<file src="LICENSE_ROYALTYFREE" />
</files>
</package>