I created a new Connector Solution Project.
During implentation I wanted to call the function (GetParameters) and there is a problem with the DLL import for my QAction.
"QAction 206"
object[] oReturnValues = (object[])protocol.GetParameters(
new UInt32[] {
Parameter.tokenstatuscodeoperator_205,
Parameter.tokenresponseoperator_206
});
VS Studio can't resolve it. (even the "Paramater.xxxx" is not defined in this contex)
QAction_Helper Parameter Class.
The DLL import is not imported, so I tried to import it. As you can see, even I try to import it is gonna unchecked after checking the import.
How can I import the DLL?
Thank you in advance.
Hi Ömer
You don't need the 'SLProtocolScripts.dll' for the GetParameter and the Parameter classes.
As you are working in a connector solution, you can create the QAction project by pressing the icon to the left of the QAction tag (Edit QAction option in the menu seen in your gif). This will generate the QAction project with the necessary references and NuGet packages.
Then on the solution, make sure you used the 'Restore NuGet packages' option and see if Visual Studio can build the solution.