All Questions
3 questions
0
votes
1
answer
74
views
Automatic binding to some service properties in Catel with Fody
Assuming there is some service:
public interface IDeviceManagerService
{
ISomeDeviceApi Api { get; }
}
It's purpose is to monitor external environment (USB, network, etc.), instantiate device ...
1
vote
1
answer
262
views
Catel + Fody/LoadAssembliesOnStartup + Fody/ModuleInit and order of loading modules
I use Catel + Fody/LoadAssembliesOnStartup + Fody/ModuleInit. I would like to know, how can I specify the load order of modules?
I want to use the serviceLocator.RegisterTypeAndInstantiate for this I ...
1
vote
1
answer
1k
views
Unable to filter on class name (in NLog.config) when using anotar catel nlog logging
I am using anotar catel fody for logging in my application.
In NLog.config I want to use different levels for certain classes. Example config
<logger name="SpaceA.*"
minlevel="Info"
...