Skip to content

Instantly share code, notes, and snippets.

@navancommits
Created December 4, 2023 08:20
This code snippet sits under ApplicationBuilderExtensions.cs
public static IApplicationBuilder UseCustomSitecoreRenderingEngine(this IApplicationBuilder app)
{
app.UseMiddleware<CustomRenderingEngineMiddleware>();
return app;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment