Skip to content

dotnet-postal-data-v1.0.0

Latest
Compare
Choose a tag to compare
@timcallaghan timcallaghan released this 02 Sep 07:02
· 15 commits to main since this release

This release contains the libpostal trained model data that is required to run libpostal. Due to github repository file size limitations it is not possible to include these files in the git repository directly.

Instead it must be downloaded manually and extracted. If you are using LMGTech.DotNetPostal via nuget package install, you need to extract these files to the same folder as the csproj where you installed LMGTech.DotNetPostal. You also need to modify the csproj file to include these model files as content, typically by adding the following section to your project's csproj file:

<ItemGroup>
    <Content Include="libpostaldata\**">
        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
    </Content>
</ItemGroup>