forked from HangfireIO/Hangfire
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHangfire.SqlServer.MSMQ.nuspec
53 lines (47 loc) · 2.08 KB
/
Hangfire.SqlServer.MSMQ.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
<?xml version="1.0"?>
<package>
<metadata>
<id>Hangfire.SqlServer.MSMQ</id>
<version>0.0.0</version>
<title>Hangfire MSMQ Queues for SQL Server Storage</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>MSMQ queues support for SQL Server job storage implementation for Hangfire (background job system for ASP.NET applications).</description>
<copyright>Copyright © 2014 Sergey Odinokov</copyright>
<tags>Hangfire SqlServer MSMQ</tags>
<releaseNotes>https://www.hangfire.io/blog/
1.6.3
• Fixed – Prevent MSMQ transactions from timing out after 1 minute of processing.
1.6.2
• Fixed – Public MSMQ queue paths are parsed correctly now, when determining the queue length.
1.6.0
• Fixed – Package now depends on the latest Hangfire.SqlServer instead of version 1.2.2.
1.5.7
• Fixed – Dashboard crashing when trying to get the MSMQ queue length (by @yangman).
1.5.0
• Added – Support for remote MSMQ queues through DTC transactions.
1.4.0
• Changed – Speed up `GetCount` method with native implementation.
• Fixed – Incorrect order of fetching when multiple queues used.
</releaseNotes>
<dependencies>
<dependency id="Hangfire.Core" version="[0.0.0]" />
<dependency id="Hangfire.SqlServer" version="[0.0.0]" />
</dependencies>
</metadata>
<files>
<file src="net45\Hangfire.SqlServer.Msmq.dll" target="lib\net45" />
<file src="net45\Hangfire.SqlServer.Msmq.xml" target="lib\net45" />
<file src="net45\Hangfire.SqlServer.Msmq.pdb" target="lib\net45" />
<file src="..\src\Hangfire.SqlServer.Msmq\**\*.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>