From 18ba453cbc5c8132829d8909ffbc624099fd2b6c Mon Sep 17 00:00:00 2001 From: Stef Heyenrath Date: Fri, 24 Feb 2023 21:52:30 +0100 Subject: [PATCH] public enum ProxyClassAccessibility --- Generate-ReleaseNotes.bat | 2 +- PackageReleaseNotes.txt | 2 +- ReleaseNotes.md | 2 +- .../FileGenerators/ProxyAttributeGenerator.cs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Generate-ReleaseNotes.bat b/Generate-ReleaseNotes.bat index ef5f69b..0d89bf0 100644 --- a/Generate-ReleaseNotes.bat +++ b/Generate-ReleaseNotes.bat @@ -1,6 +1,6 @@ rem https://github.com/StefH/GitHubReleaseNotes -SET version=0.0.32 +SET version=0.0.33 GitHubReleaseNotes --output "ReleaseNotes.md" --skip-empty-releases --exclude-labels question invalid doc --version %version% diff --git a/PackageReleaseNotes.txt b/PackageReleaseNotes.txt index 0ec445b..928ecfd 100644 --- a/PackageReleaseNotes.txt +++ b/PackageReleaseNotes.txt @@ -1,4 +1,4 @@ -# 0.0.32 (24 February 2023) +# 0.0.33 (24 February 2023) - #58 Add support for public and internal ProxyClass [enhancement] - #56 Internal proxies/Proxy factory [enhancement] diff --git a/ReleaseNotes.md b/ReleaseNotes.md index c8cd990..234d7dd 100644 --- a/ReleaseNotes.md +++ b/ReleaseNotes.md @@ -1,4 +1,4 @@ -# 0.0.32 (24 February 2023) +# 0.0.33 (24 February 2023) - [#58](https://github.com/StefH/ProxyInterfaceSourceGenerator/pull/58) - Add support for public and internal ProxyClass [enhancement] contributed by [StefH](https://github.com/StefH) - [#56](https://github.com/StefH/ProxyInterfaceSourceGenerator/issues/56) - Internal proxies/Proxy factory [enhancement] diff --git a/src/ProxyInterfaceSourceGenerator/FileGenerators/ProxyAttributeGenerator.cs b/src/ProxyInterfaceSourceGenerator/FileGenerators/ProxyAttributeGenerator.cs index cd3adfa..1e4f1c1 100644 --- a/src/ProxyInterfaceSourceGenerator/FileGenerators/ProxyAttributeGenerator.cs +++ b/src/ProxyInterfaceSourceGenerator/FileGenerators/ProxyAttributeGenerator.cs @@ -49,7 +49,7 @@ namespace ProxyInterfaceGenerator }} [Flags] - internal enum ProxyClassAccessibility + public enum ProxyClassAccessibility {{ Public = 0,