Windows 플랫폼 에서 현재 프로젝트를 만들고 있는데요
(Windows Legacy 에서 업데이트하려고요.)
외부 DLL 을 사용 할 방법 또는 커스텀 액티비티를 만들 방법이 궁금합니다.
이전 레가시에서는 UiPath activity creator 로 액티비티를 만들어서 쓰거나
NPE 로 dll 를 패키지로 만들어서 외부 dll을 Import 했는데요.
.net 8.0 프레임워크의 dll 을 패키지로 만들어도 호환이 안된다고 나옵니다
액티비티를 만들든 dll을 패키지로 만들든 방법은 상관없지만 어떻게 UiPath studio 에서
외부 dll의 메소드를 사용할까요?
Hi @neodecisions1162,
Can you elaborate on which dll you are trying to import?
If you could download dotPeek and then load the dll - you should be able to tell which target version of .NET was used to build the dll, or if you look at the references and search for one of them - the reference should tell you what the supported target versions are (usually .NET (core), .NET Framework, or .NET Standard).
The dll would have to support .NET (64 bit) in order to be compatible with a custom UiPath library that is targeted at .NET 8.0
Thanks