Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Silksong.ModMenu/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
It should follow the format major.minor.patch (semantic versioning). If you publish your mod
as a library to NuGet, this version will also be used as the package version.
-->
<Version>0.7.1</Version>
<Version>0.7.2</Version>
</PropertyGroup>
</Project>
5 changes: 4 additions & 1 deletion Silksong.ModMenu/Models/Attributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ public class ModMenuNameAttribute(string customName) : Attribute
///
/// Any attribute named "ModMenuIgnoreAttribute" will be treated the same for this functionality, so you can opt-out of ModMenu behaviors without adding ModMenu as a dependency.
/// </summary>
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Field, AllowMultiple = false)]
[AttributeUsage(
AttributeTargets.Class | AttributeTargets.Field | AttributeTargets.Property,
AllowMultiple = false
)]
public class ModMenuIgnoreAttribute : Attribute { }

internal static class AttributeExtensions
Expand Down