I understand that in the SDL Tridion 2011 implementation there are two options for disabling link resolution. Therefore, when a component is published, not all related components will also be reissued.
These two ways:
- Using the event system , subscribing to a publication event and modifying permission instructions as follows:
args.PublishInstruction.ResolveInstruction.IncludeComponentLinks = false;
- Using a custom converter and implementing the
Tridion.ContentManager.Publishing.Resolving.IResolver interface
Question: which of these options is preferable and why?
source share