Cumulus 1.0.0.2

The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Cumulus --version 1.0.0.2
NuGet\Install-Package Cumulus -Version 1.0.0.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Cumulus" Version="1.0.0.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Cumulus --version 1.0.0.2
#r "nuget: Cumulus, 1.0.0.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Cumulus as a Cake Addin
#addin nuget:?package=Cumulus&version=1.0.0.2

// Install Cumulus as a Cake Tool
#tool nuget:?package=Cumulus&version=1.0.0.2

Cumulus is a fork of Nimbus with the aim of continuing the good work of Damian and Andrew and taking it to the next level.

Product Compatible and additional computed target framework versions.
.NET Framework net451 is compatible.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

Initial release of Cumulus, a fork of Nimbus.

     Changes since Nimbus 2.0.0.98:
     - Added the ability to send in a fallback serializer when doing json-serialization. This is useful when switching from an existing XML structure to json, and if you don't want this to break you send in the DataContractSerializer as a fallback.
     - Added the ability to use express queues and topics, configurable through settings
     - Added the NamingConventionAttribute which gives the user the ability to use already existing queues and topics.
     - Added defaults for FetchExistingQueuesTimeout, FetchExistingTopicsTimeoutSetting and WarmUpAzureQueueManagerDuringStartup.
     - Added functionality to do a delayed publish with PublishAt(...).
     - Added general heartbeat overload and making it visible.
     - Added the setting EnableQueuesAndTopicCreationSetting which gives you the ability to choose if topics/should should automatically be created or not. Useful for users only having the ServiceBus Basic tier.
     - Added Dispatch Abandoned property.
     - Added IPropertyInjector.

     - Updated loggers to include the .Fatal(...) functionality.
     - Changed the type of BrokeredMessage to IXmlSerializable in IRequireBrokeredMessage in order to remove the dependency on WindowsAzure.ServiceBus
     - Allow multiple heartbeat listeners at a time.
     - Updated projects to .Net 4.5.1.
     - Improve heartbeat reliability.
     - Refactored heartbeat to use an interface when publishing events.

     - Fixed a formatting problem with NLog and did som refactoring surrounding this.
     - Fixed #6 by adding a performance counter to measure the number of messages dropped because lock expired.
     - Fixed the swallowing of exceptions when bus fails to start.
     - Fixed Log4net warnings by normalising serilog-formatted log messages. Make LoggingNormalizer public since other logging providers will need this.