Skip to content

Commit

Permalink
fix: ApplicationRoleConnectionMetadata should be public
Browse files Browse the repository at this point in the history
chore: bump version to 10.6.6
  • Loading branch information
Lulalaby committed Aug 13, 2024
1 parent 5209ac6 commit fbf4718
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DisCatSharp.Targets/Version.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<VersionPrefix>10.6.5</VersionPrefix>
<VersionPrefix>10.6.6</VersionPrefix>
</PropertyGroup>
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">
<Version>$(VersionPrefix)-$(VersionSuffix)-$(BuildNumber)</Version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,12 @@ public sealed class ApplicationRoleConnectionMetadata
/// <para>The <c>key</c> is the metadata key.</para>
/// <para>The <c>value</c> is the string-ified value of the metadata.</para>
/// </summary>
public Dictionary<string, string> Metadata { get; internal set; } = [];
internal Dictionary<string, string> Metadata { get; set; } = [];

/// <summary>
/// Initializes a new instance of <see cref="ApplicationRoleConnectionMetadata"/>.
/// </summary>
internal ApplicationRoleConnectionMetadata()
public ApplicationRoleConnectionMetadata()
{ }

/// <summary>
Expand Down

0 comments on commit fbf4718

Please sign in to comment.