(Solved) Is Slimsy 4 runnable on Umb 13?
c
I'm upgrading a V11 site to V13 and getting "InvalidOperationException: No service for type 'Slimsy.Services.SlimsyService' has been registered." Of course we don't have startup.cs anymore. So I'm not sure whether it's both i.e. because it's not registered anywhere (so how?) and that Slimsy on GitHub only appears to go up to V12: https://github.com/Jeavon/Slimsy
The answers appear to be that Slimsy 4 does run on Umb13 and should be registered via a composer such as this one from @Sebastiaan (thanks :))
Copy code
using Slimsy.DependencyInjection;
using Umbraco.Cms.Core.Composing;

namespace MyProject;

public class RegisterDependencies : IComposer
{
    public void Compose(IUmbracoBuilder builder)
    {
        builder.AddSlimsy();
    }
}
10 Views