forked from hmemcpy/AgentMulder
-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
Description
R# 2019.1.3
Agent Mulder 2019.1.0
VS 16.2.0
SimpleInjector 4.6.0
Hi,
I'm new to this plugin and I can't see any visual cues at all, I also see no configuration options or indication that the plugin works at all (only that it's installed in R#s plugin manager). We use SimpleInjector to register our command interface:
var commandType = typeof(IOurCommand<>);
Container.Register(commandType, commandType.Assembly);
Container.RegisterDecorator(commandType, typeof(TransactionCommandAspect<>));And a sample aspect:
public class TransactionCommandAspect<TCommand> : IOurCommand<TCommand> {...}and sample command:
public class HelpCommand : IOurCommand<OurModel> {...}I should at least see "Navigate to -> Registered Components" on our interface, right? Am I missing some configuration I need to do before?