pmn
pmn

Reputation: 2247

NServiceBus support .NetCore or not?

I read some article about NServiceBus and i want use it, but i dont know it fully supported the .NetCore or not, i googled about it (and found some information like This), but it could not help me much, any one can help me?

Upvotes: 0

Views: 360

Answers (3)

Andrii Litvinov
Andrii Litvinov

Reputation: 13182

UPDATE: Starting from NServiceBus 7.0.1 they introduce support on .NET Standard 2.0 and thus can run on .NET Core 2.1+.

Building endpoints with .NET Core 3.1 explains how to configure it on .NET Core 3.1 and generic host.

Original answer:

NServiceBus package has no dependency on any NetStandard so it means it cannot run on Core CLR. You can use it in .NET Core projects only if you target Full .NET Framework, not .NET Core.

Upvotes: 2

Sabacc
Sabacc

Reputation: 789

Update: Particular Software announced upcoming support for .NET Core 2.0 on their company blog here: https://particular.net/blog/nservicebus-on-net-core-its-time

Upvotes: 1

Simon
Simon

Reputation: 34840

As of 24 April 2017 NServiceBus does not support .net core. The most current public status is this https://particular.net/blog/nservicebus-on-net-core-why-not

However I can say that internally to Particular significant effort is being put into getting .net standard support shipped.

I will add this question to the list of follow ups for after we ship

Upvotes: 1

Related Questions