You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have a transformation that use c# and after the update we have this error :
The server encountered an unexpected error:
"Error (CS0246, Line 5, Col 7): Le type ou le nom d'espace de noms 'Lithnet' est introuvable (une directive using ou une référence d'assembly est-elle manquante ?)
From french to english : "The type or namespace name 'Lithnet' was not found (is a using directive or assembly reference missing?"
Our c# script start with :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml; using Lithnet.Transforms;
using Microsoft.MetadirectoryServices;
public static class CSExtension
{
public static IList Transform(IList obj)
{
...
Line 5 is "using Lithnet.Transforms;" , if we roll back to the old version everything works fine.
The text was updated successfully, but these errors were encountered:
We didn't test UMARE in the editor but directly with the sync engine.
I can give you more context on the subject because we have done more things on this infra :
MIMSync -> MIMSYNC SP2 KB4512924
MIMSYNC SP2 KB4512924 -> KB5018333
Windows Server 2012 R2 -> Windows Server 2019 (In-place upgrade)
SQL Server 2016 SP3 -> SQL Server 2022 -> SQL Server 2022 CU 15 (Not officialy supported)
UMARE v1.5.6591-> v2.0.4
We have installed all prerequisites required for MIM Sync SP2 (.netframework, ...)
If necessary i can give you more info from the script in private.
We have a transformation that use c# and after the update we have this error :
The server encountered an unexpected error:
"Error (CS0246, Line 5, Col 7): Le type ou le nom d'espace de noms 'Lithnet' est introuvable (une directive using ou une référence d'assembly est-elle manquante ?)
From french to english : "The type or namespace name 'Lithnet' was not found (is a using directive or assembly reference missing?"
Our c# script start with :
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml;
using Lithnet.Transforms;
using Microsoft.MetadirectoryServices;
public static class CSExtension
{
public static IList Transform(IList obj)
{
...
Line 5 is "using Lithnet.Transforms;" , if we roll back to the old version everything works fine.
The text was updated successfully, but these errors were encountered: