Microsoft.Activies.Extensions

I am unable to install Microsoft.Activies.Extension. Showing No comaptiable version with windows projects. Not able to find Windows-Legacy in Compatability. Using UiPath 2024 edition. Guide me.
Thankq.

have a look here introducing into the topic of Legacy-to-Windows Conversion

when it is related to Dictionary have a look here

Otherwise let us know which activities were focussed, so we can check the alternates

Hi @Suguneswari_Veeramalla

Please check below thread

Regards,

@Suguneswari_Veeramalla

Welcome to the community

  1. In 2024 you cannot create windows-legacy projects…one way you can try it create a project in windows and then open project.json and change the compatibility to Legacy from windows
  2. Microsoft extenaion activities are not supported on windows
  3. Without extension also we can do all the tasks

Cheers

Thanks Anil,
Actually I want to use Add to Dictionary Activity( key, value). It is not visible in 2024 edition. Can you Guide me how to install Add to Dictionary with out using Microsof.Acctivities.Extensions.

Hi @Suguneswari_Veeramalla

Please check this

Regards,

@Suguneswari_Veeramalla

Just use an assign activity and

Dict("key") = "value"

To initalize use New Dict(Of String,String) dependinng on type change string and object if that is the case

Cheers

what about Add to Collection activity. Any alternativie for this too.
Thankq.

Code Option
myCollectionVar = myCollectionVar.Append(myItem).ToList | or toArray

Activity option:

OR