❔ Reference to type 'IReceiveEndpointConfigurator' claims it is defined in 'MassTransit'
Hello friends,
I have a Microservice which using the
MassTransit
as an Abstraction over RabbitMQ
, I created a separated class the constains an extension method to register and configure the MassTransit settings:
The issue :
The issue is I get a compile time error in this line :
That error says :
Reference to type 'IReceiveEndpointConfigurator' claims it is defined in 'MassTransit', but it could not be foundAnd I'm sure that this microservice/project has the
MassTransit
installed.
Please any help ? <36 Replies
sounds like a versioning issue
means what exactly related to versioning ?
as in, the version of
MassTransit
that you're compiling against does not define IReceiveEndpointConfigurator
after removing this package :
MassTransit.Extensions.DependencyInjection
it works fine
massive thanksgg
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.