Compatibility of IOM.dll with .NET Core 8

Hello Innovators,

I am currently trying to integrate the IOM.dll with .NET Core 8. Has anyone successfully managed to get it working? If not, are there any recommended workarounds or alternative approaches?

Looking forward to your insights.

Best regards,
Daan

Parents
  • Update for future reference.

    My colleague found a way to get this working. 

    Step 1. Add the following code to your [project].csproj file inside the ItemGroup tags. The specific version 4.10.3 is important.

    <PackageReference Include="System.Private.ServiceModel" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.Http" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.Primitives" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.NetTcp" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.Security" Version="4.10.3" />

    Step 2. Terminal: dotnet clean

    Step 3. Clear contents of bin folder

    Step 4. Clear contents of obj folder

    Step 5. Terminal: dotnet restore

    Step 6. Terminal: dotnet build

    Step 7. Terminal: dotnet run

    Done!

Reply
  • Update for future reference.

    My colleague found a way to get this working. 

    Step 1. Add the following code to your [project].csproj file inside the ItemGroup tags. The specific version 4.10.3 is important.

    <PackageReference Include="System.Private.ServiceModel" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.Http" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.Primitives" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.NetTcp" Version="4.10.3" />
    <PackageReference Include="System.ServiceModel.Security" Version="4.10.3" />

    Step 2. Terminal: dotnet clean

    Step 3. Clear contents of bin folder

    Step 4. Clear contents of obj folder

    Step 5. Terminal: dotnet restore

    Step 6. Terminal: dotnet build

    Step 7. Terminal: dotnet run

    Done!

Children
No Data