Hi
I have developed a Windows Project solution in UiPath that uses a nuget package that has been build and created from a .net6 class library project in Visual Studio. The package works perfectly in my solution when running attended in Studio.
Now I need to run the solution unattended from the cloud Orchstrator. In order for the solution to be able to be run unattended it needs to install the .net6 nuget package from the Orchestrator also and I have therefore manually uploaded the same nuget package used in my solution to the Orchestrator. The uploaded nuget package is unfornunately only recognized to be compatible with Windows - Legacy (.net461) after upload and not the expected Windows (.net5.0 or higher) compatibility. Due to the incorrect compatibility I get the following error when running the job in Orchestrator:
UiPath.CoreIpc.RemoteException: Failed to install package ‘’ —> UiPath.CoreIpc.RemoteException: Failed to download package ‘FS_OA_RPA_123_RPA_Workzone_Client.0.0.8’ from ‘https://cloud.uipath.com//DefaultTenant/orchestrator_/nuget/v3/83f5942885344ee59368dedae69e1b29/packages/fs_oa_rpa_123_rpa_workzone_client/0.0.8/fs_oa_rpa_123_rpa_workzone_client.0.0.8.nupkg’.
Response status code does not indicate success: 403 (Forbidden).
I guess the error simply indicates that the package it looks for is not compatible and therefore the forbidden 403 error.
Does anyone either know what I should or could do to uploaded the nuget package such that it is recognized with the correct compatibility or know if I should take some other approach for uploading the nuget package?
Thanks!