You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
project references package System.Text.Encoding.CodePages version 4.3.0 which is alright.
the published nuget is probably built against net46 resulting in reference to assembly System.Text.Encoding.CodePages, Version=4.0.2.0 (package 4.3.0 contains assembly for net46 with version 4.0.2.0) .. this causes anyone using this package on netstandard properly referencing System.Text.Encoding.CodePages 4.3.0 but on platforms != net46 the runtime crashes with FileNotFoundException
The text was updated successfully, but these errors were encountered:
happens when calling TryReadFileContent method on a file with a wrong encoding, method tries to lazily initialize CodePages resulting in FileNotFoundException
project references package
System.Text.Encoding.CodePages
version4.3.0
which is alright.the published nuget is probably built against
net46
resulting in reference to assemblySystem.Text.Encoding.CodePages, Version=4.0.2.0
(package 4.3.0 contains assembly for net46 with version 4.0.2.0) .. this causes anyone using this package on netstandard properly referencing System.Text.Encoding.CodePages 4.3.0 but on platforms !=net46
the runtime crashes with FileNotFoundExceptionThe text was updated successfully, but these errors were encountered: