Fixed: 'iso-8859-2' is not a supported encoding name

This commit is contained in:
Qstick
2020-12-25 22:08:59 -05:00
parent 45671c89f9
commit 966e9f43f1
2 changed files with 3 additions and 1 deletions
+2 -1
View File
@@ -4,11 +4,11 @@ using System.IO;
using System.Reflection; using System.Reflection;
using System.Security.Cryptography; using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates; using System.Security.Cryptography.X509Certificates;
using System.Text;
using DryIoc; using DryIoc;
using DryIoc.Microsoft.DependencyInjection; using DryIoc.Microsoft.DependencyInjection;
using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Hosting.WindowsServices; using Microsoft.Extensions.Hosting.WindowsServices;
using NLog; using NLog;
@@ -46,6 +46,7 @@ namespace NzbDrone.Host
var startupContext = new StartupContext(args); var startupContext = new StartupContext(args);
LongPathSupport.Enable(); LongPathSupport.Enable();
Encoding.RegisterProvider(CodePagesEncodingProvider.Instance);
var appMode = GetApplicationMode(startupContext); var appMode = GetApplicationMode(startupContext);
+1
View File
@@ -7,6 +7,7 @@
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" /> <PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" />
<PackageReference Include="DryIoc.dll" /> <PackageReference Include="DryIoc.dll" />
<PackageReference Include="DryIoc.Microsoft.DependencyInjection" /> <PackageReference Include="DryIoc.Microsoft.DependencyInjection" />
<PackageReference Include="System.Text.Encoding.CodePages" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>
<ProjectReference Include="..\Readarr.Api.V1\Readarr.Api.V1.csproj" /> <ProjectReference Include="..\Readarr.Api.V1\Readarr.Api.V1.csproj" />