Mark Cunningham

Results 5 comments of Mark Cunningham

any updates, i get this error too. creating pages is fine.

https://docs.microsoft.com/en-us/dotnet/spark/how-to-guides/dotnet-interactive-udf-issue

Was thinking on the lines of. ``` public Interface IPackageDeployerExtension { void Execute() } ``` Then each service Implements IPackageDeployerExtension leaving you with something like ``` App.RegisteredHandlers.ForEach(handler =>{ handler.Execute() }...

Exactly, it makes it also less error prone as you only add the handler for new features without risking damage to other services

I started looking into options recently for this, One I wanted to try was MediatR, It supposedly aims to loosly couple components by turning it into more of a publish...