-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectExtensions.Azure.ServiceBus.nuspec
37 lines (37 loc) · 2.69 KB
/
ProjectExtensions.Azure.ServiceBus.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>ProjectExtensions.Azure.ServiceBus</id>
<title>Azure AppFabric ServiceBus IHandleMessage<T> wrapper by Project Extensions</title>
<version>0.8.4.0</version>
<authors>Project Extensions, Joe Feser</authors>
<owners>Project Extensions, Joe Feser</owners>
<copyright>Copyright (C) Project Extensions and Joe Feser 2011</copyright>
<projectUrl>https://github.com/ProjectExtensions/ProjectExtensions.Azure.ServiceBus</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>Added support for pausing after an error for a handler. Added ability to auto DeadLetter after MaxRetries.
Breaking Change: The IDictionary parameter on the handler has been moved to the message and the second parameter has been removed.</releaseNotes>
<description>Azure AppFabric ServiceBus wrapper modeled after the NServiceBus pattern of IHandleMessage<T></description>
<summary>Azure ServiceBus Wrapper modeled after the NServiceBus pattern of IHandleMessage<T>. Includes Autofac IoC container support.
If you use a different IoC container, get ProjectExtensions.Azure.ServiceBus.Core and one of the IoC packages (ProjectExtensions.Azure.ServiceBus.IOC.[container])
where container is Autofac, CastleWindsor, StructureMap or Unity. (Debug)</summary>
<dependencies>
<dependency id="Autofac" version="2.5.2.830" />
<dependency id="Newtonsoft.Json" version="4.0.3" />
<dependency id="NLog" version="2.0.0.2000" />
<dependency id="WindowsAzure.ServiceBus" version="1.5.0.0" />
</dependencies>
<tags>Azure, AppFabric, ServiceBus</tags>
</metadata>
<files>
<file src="BuildOutput\bin\ProjectExtensions.Azure.ServiceBus.dll" target="lib\net40-full" />
<file src="BuildOutput\bin\ProjectExtensions.Azure.ServiceBus.pdb" target="lib\net40-full" />
<file src="BuildOutput\bin\ProjectExtensions.Azure.ServiceBus.xml" target="lib\net40-full" />
<file src="BuildOutput\bin\ProjectExtensions.Azure.ServiceBus.Autofac.dll" target="lib\net40-full" />
<file src="BuildOutput\bin\ProjectExtensions.Azure.ServiceBus.Autofac.pdb" target="lib\net40-full" />
<file src="BuildOutput\bin\ProjectExtensions.Azure.ServiceBus.Autofac.xml" target="lib\net40-full" />
<file src="BuildOutput\src\*.cs" target="src" />
<file src="BuildOutput\src\ProjectExtensions.Azure.ServiceBus\**\*.cs" target="src\ProjectExtensions.Azure.ServiceBus" />
<file src="BuildOutput\src\ProjectExtensions.Azure.ServiceBus.Autofac\**\*.cs" target="src\ProjectExtensions.Azure.ServiceBus.Autofac" />
</files>
</package>