Hello,
My question is regarding the .dmprotocol package and references an earlier post: https://community.dataminer.services/question/is-there-any-documentation-explaining-how-we-can-create-dmprotocol-package/
Where is the required <assemblyFilePath> located in the solution folder?
*************
var protocolBuilder = new AppPackageProtocol.AppPackageProtocolBuilder("<name>", "<version>", "<protocolXmlFilePath"))
.WithAssembly("<assemblyFilePath>", "<destinationFolder>");
*************
I have tried using the QAction_Helper.dll and was able to create a .dmprotocol package file, however it only contained the xml information (i.e. parameters, triggers, groups, timers, etc) but no C# code in the QActions nor any other references.
Hi Pawel,
While this is not a direct answer to your question, have you considered generating the .dmprotocol package through DIS?
In Visual Studio, you can easily save a protocol as a .dmprotocol file.
This will take care of everything for you.
Hi Ive, yes, I have been using the “Save Compiled Protocol As” feature in VS, but looking at improving the current CI/CD pipeline.