I have created a folder called Effects, which should contain all the effects for my project. It has one effect in it with the following attribution:
[assembly: ResolutionGroupName("Effects")]
[assembly: ExportEffect(typeof(SomeProject.iOS.Effects.SliderEffect), "SliderEffect")]
Now I want to add another effect (as separate file), with the same ResolutionGroupName
, but I get
Duplicate 'ResolutionGroupName' attribute
I understand that
Note that this attribute can only be applied once per project.
and
Attribute that identifies a group name, typically a company name or reversed company URL, that provides a scope for effect names.
, but how can you use multiple effects in separate files? All the examples I found are only using one effect ...