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