Closed
Description
Type of issue
[x] Bug
[ ] Question (e.g. about handling/usage)
[ ] Request for new feature/improvement
Expected Behavior
No build errors after minor upgrade of 1.4.2 to 1.4.3
Current Behavior
Upgrading my nuget package dependency from 1.4.2 to 1.4.3 caused build errors in my project, because Base64QRCode
could not be found
Possible Solution (optional)
Looks to be related to NET6_0_WINDOWS directives that have been added in this release
Steps to Reproduce (for bugs)
- .Net 6 Web App.
- Add 1.4.2 QRCoder package
- Instantiate a Base64QRCode
- Compile / Run and observe no build error
- Upgrade to 1.4.3 package
- Attempt to build solution. Compiler error: The type or namespace name 'Base64QRCode' could not be found (are you missing a using directive or an assembly reference?)
Your Environment
TargetOS of Web App: None.
By explicitly setting this to Windows, the compiler error is fixed, but this breaking change shouldn't be introduced in a patch level version change.