Skip to content

Commit

Permalink
feat: Released new beta version.
Browse files Browse the repository at this point in the history
  • Loading branch information
HavenDV committed Jul 23, 2024
1 parent 4d297a1 commit 2370a13
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/libs/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ItemGroup>

<PropertyGroup Label="Nuget">
<Version>1.5.0-beta.1</Version>
<Version>1.5.0-beta.2</Version>
<GeneratePackageOnBuild Condition=" '$(Configuration)' == 'Release' ">true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Authors>havendv</Authors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public partial class MyControl : UserControl
[DependencyProperty<string>("NotNullStringProperty", DefaultValue = "", Validate = true, Coerce = true)]
public partial class MyControl : UserControl
{
private partial string? CoerceNotNullStringProperty(string? value)
private partial string CoerceNotNullStringProperty(string? value)
{
return value ?? string.Empty;
}
Expand Down

0 comments on commit 2370a13

Please sign in to comment.