diff --git a/src/libs/Directory.Build.props b/src/libs/Directory.Build.props index 60d4b3b..f1948aa 100644 --- a/src/libs/Directory.Build.props +++ b/src/libs/Directory.Build.props @@ -14,7 +14,7 @@ - 1.5.0-beta.1 + 1.5.0-beta.2 true true havendv diff --git a/src/tests/DependencyPropertyGenerator.IntegrationTests/MainWindow.cs b/src/tests/DependencyPropertyGenerator.IntegrationTests/MainWindow.cs index 9f5cbcb..48569e0 100644 --- a/src/tests/DependencyPropertyGenerator.IntegrationTests/MainWindow.cs +++ b/src/tests/DependencyPropertyGenerator.IntegrationTests/MainWindow.cs @@ -95,7 +95,7 @@ public partial class MyControl : UserControl [DependencyProperty("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; }