AMQP.ServiceBus 1.0.0.4

Requires NuGet 3.0 or higher.

dotnet add package AMQP.ServiceBus --version 1.0.0.4
                    
NuGet\Install-Package AMQP.ServiceBus -Version 1.0.0.4
                    
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="AMQP.ServiceBus" Version="1.0.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AMQP.ServiceBus" Version="1.0.0.4" />
                    
Directory.Packages.props
<PackageReference Include="AMQP.ServiceBus" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add AMQP.ServiceBus --version 1.0.0.4
                    
#r "nuget: AMQP.ServiceBus, 1.0.0.4"
                    
#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.
#:package AMQP.ServiceBus@1.0.0.4
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=AMQP.ServiceBus&version=1.0.0.4
                    
Install as a Cake Addin
#tool nuget:?package=AMQP.ServiceBus&version=1.0.0.4
                    
Install as a Cake Tool

There was a time that I badly need a service bus component which enables my UWP to create topic/subscription on AzureServiceBus. Unfortunately, neither Microsoft nor 3rd party component can do it for me. The Microsoft one requires full .Net environment and rejected UWP, the 3rd party library only has part of features I needed. So, I created this one based on the REST interface and customized for UWP project.

It is light weight, stable and easy to use. Here is the project source and more description:
https://github.com/1Upper/AMQP.ServiceBus

Product Compatible and additional computed target framework versions.
Universal Windows Platform uap was computed.  uap10.0 is compatible. 
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
1.0.0.4 2,486 9/4/2016

A light weight, stable and easy to use Azure servicebus component, it is designed for UWP, supports creating topic/queue/subscription, sending/receiving message, peeklock/unlock and basic queue function.