using Microsoft.AspNetCore.Mvc.ApplicationParts; using System; using System.Collections.Generic; using System.Reflection; namespace WinFormNet5 { public class MyCompiledRazorAssemblyPart : CompiledRazorAssemblyPart, ICompilationReferencesProvider { public MyCompiledRazorAssemblyPart(Assembly assembly) : base(assembly) { } IEnumerable ICompilationReferencesProvider.GetReferencePaths() { return Array.Empty(); } } }