Package Conflicts (Microsoft.Graph)

Hello There,

We have a custom Close Application Activity which uses Sytem.Diagnostics.Process, this Class /Method seem get into conflict with the one in the Microsoft.Graph.Process, any ideas how to fix this. Following is the error message:

03/16/2021 15:11:50 => [Error] Close Application: No compiled code to run
error CS0104: 'Process' is an ambiguous reference between 'System.Diagnostics.Process' and 'Microsoft.Graph.Process' At line 1
error CS0104: 'Process' is an ambiguous reference between 'System.Diagnostics.Process' and 'Microsoft.Graph.Process' At line 2

Thank you for your inputs
Hara

Have you solved it?

If I add “UiPath.MicrosoftOffice365.Activities” and “UiPath.MicrosoftTeams.Activities” it happens

You’ve got code that says Process.SomeProperty or something like that, and it can’t differentiate between System.Diagnostics.Process and Microsoft.Graph.Process to figure out how to handle Process.SomeProperty

Reference the full source.

System.Diagnostics.Process.SomeProperty and Microsoft.Graph.Process.SomeProperty

See my last comment.