Hi,
I'm trying to get Service Bus Topics and/or Queues working on Linux with the open source Mono framework. I created 2 test console apps (sender/receiver) which work perfectly on my Windows machine. But if I try to run them on Linux, I get the following exception:
Unhandled Exception:
System.TypeInitializationException: An exception was thrown by the type initializer for TimerManager ---> System.EntryPointNotFoundException: CreateWaitableTimer at (wrapper managed-to-native) Microsoft.ServiceBus.Common.Interop.UnsafeNativeMethods:CreateWaitableTimer
(intptr,bool,string)
It seems CreateWaitableTimer is not available on Linux. Is there a way to use the Service Bus SDK without relying on CreateWaitableTimer? Or is there another SDK/Nuget package I can use?
Thanks!
J