Issue with receiving stream in .NET Framework

Ok, so we’ve investigated.

In your csproj file, you must specify a PlatformTarget in order for the build to copy the correct e_sqlite.dll files.

For example

<Project Sdk="Microsoft.NET.Sdk">

    <PropertyGroup>
        <OutputType>Exe</OutputType>
        <TargetFramework>net48</TargetFramework>
        <PlatformTarget>AnyCPU</PlatformTarget>
    </PropertyGroup>

    <ItemGroup>
      <PackageReference Include="Speckle.Core" Version="2.14.2" />
    </ItemGroup>

</Project>

2 Likes