Skip to content

Commit

Permalink
fix: Make EntryPointAttribute<> not sealed
Browse files Browse the repository at this point in the history
  • Loading branch information
Yushu2606 committed May 16, 2024
1 parent 214dd56 commit fe9b309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/EntryPointAttribute.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ public abstract class EntryPointAttributeBase : Attribute
}

[AttributeUsage(AttributeTargets.Assembly)]
public sealed class EntryPointAttribute<T> : EntryPointAttributeBase where T : IEntryPoint, new()
public class EntryPointAttribute<T> : EntryPointAttributeBase where T : IEntryPoint, new()
{
internal override IEntryPoint CreateInstance()
{
Expand Down

0 comments on commit fe9b309

Please sign in to comment.