Custom .nuget Package not listed in activity Pane in Studio 2019.6.0

Hi Everyone,

I have created a custom .nuget package and installed that in the Studio through Manage packages (after pointing package’s local root path). But, I’m unable to view that in the activities pane.
I am encountering this issue after updating my studio to latest version 2019.6.0.
Note: I could see the installed package in project dependencies list.

Kindly suggest me the solution…:slight_smile:

Hi @DEEPANKUMAR

  • Is it a custom activity pack that you developed?
  • Did you create it through Visual Studio or UiPath Studio?
  • Is the. Net framework same or latest in the UiPath Studio?
  • Is it a custom activity pack that you developed?
    Yes.
  • Did you create it through Visual Studio or UiPath Studio?
    I have created it through VS 2019 (using Class Library C# template).
  • Is the. Net framework same or latest in the UiPath Studio?
    I am not sure about this. It would be helpful if you tell me how to check the framework
    version in UiPath Studio.

Cool… I’m also developing custom activities for Uiapath. So would be able to work with you get it sorted. However I haven’t seen this issue that you are facing. But I have few scenarios that we can check on…

First the .net framework.

  1. In your visual studio solution check the framework you are using. You can do this by opening the solution and right clicking on the main solution item and getting on to its properties. There it has a option to change and see the framework version.

  2. .net framework in UiPath studio. Open the studio and go to help page. There just below your device I’d and rest of the info, you can see the .net framework version its using. Make sure Uipath studio is using the same or higher version.

Next the custom activity version.
I don’t know how this happens but it happened to me couple of times.
Say in version 1.1.0 nuget file you had only one activity. Next you do some updates to your code and add a new activity. Say you updates the dll file of the 1.1.0 nuget file without changing its version. Now you delete the dependency in Studio and add it again. If this happens, you will only see the 1st activity that you had. And the newly added will not be visible even though you updated it with the latest dll file. However if you change the version of the same nuget file to 1.1.2 and add it as the dependency it will have both activities…

Try that out and see how it goes…