AsciiExtensions by Kuba Szostak

<PackageReference Include="AsciiExtensions" Version="1.0.0" />

.NET API 12,800 bytes

 AsciiExtensions 1.0.0

ASCII extensions for .NET ```csharp var a = "München ist eine “übergröße” Stadt".ToAscii(); // a = "Munchen ist eine "ubergrose" Stadt" ```

<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
  <metadata>
    <id>AsciiExtensions</id>
    <version>1.0.0</version>
    <authors>Kuba Szostak</authors>
    <owners>Kuba Szostak</owners>
    <requireLicenseAcceptance>false</requireLicenseAcceptance>
    <license type="file">LICENSE</license>
    <licenseUrl>https://aka.ms/deprecateLicenseUrl</licenseUrl>
    <description>ASCII extensions for .NET

```csharp
var a = "München ist eine “übergröße” Stadt".ToAscii();
//  a = "Munchen ist eine "ubergrose" Stadt"    
```</description>
    <copyright>This is a derivative work.  The logic of this function comes from a switch statement found inside the Lucene.Net library adapted by andyraddatz.</copyright>
    <tags>ASCII</tags>
    <repository url="https://github.com/kubaszostak/AsciiExtensions" />
    <dependencies>
      <group targetFramework=".NETStandard1.0">
        <dependency id="NETStandard.Library" version="1.6.1" exclude="Build,Analyzers" />
      </group>
    </dependencies>
  </metadata>
</package>