Project: Move WPinternals code to a WPinternals folder

This commit is contained in:
Gustave Monce
2021-08-14 11:04:37 +02:00
parent 668a9b7fe2
commit 17bc763761
203 changed files with 48170 additions and 48170 deletions
@@ -1,23 +0,0 @@
#if !NET40 && !NET45
using System.Text;
#endif
namespace DiscUtils.CoreCompat
{
internal static class EncodingHelper
{
private static bool _registered;
public static void RegisterEncodings()
{
if (_registered)
return;
_registered = true;
#if !NET40 && !NET45
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
#endif
}
}
}