Hi Dojo!
I'm working in a new driver wich uses a nuget package and I'm including it as namespace in a QAction:
using System.IO.BACnet;
And as dll import in the QAction declaration:
<QAction id="2" dllImport="BACnet.dll" name="Bacnet_read" encoding="csharp" triggers="4">
I have also have checked the "Automatically generate Class Library code"
DIS compiles fine but when a run the element I have a reference error.
(9,17): error CS0234: The type or namespace name 'BACnet' does not exist in the namespace 'System.IO' (are you missing an assembly reference?)
I have follow this article but I can't find the generated dll in the dlls folder:
Any idea?
Thanks in advance!
Hi Manuel
Do note that proper NuGet support only works in DataMiner 10.1 (DataMiner 10.0.10).
In the upcoming release of DIS (2.39) (September) it will be possible to have proper NuGet support when developing. When publishing a script or protocol, it will retrieve the necessary dlls and create a dmapp/dmprotocol package and deploy that on the DataMiner.
When saving the compiled version of a script/protocol (e.g.: Save Compiled Protocol As...) it will now have the option to save it as a dmapp/dmprotocol. Previously (DIS 2.38) it would save the xml and create a folder called Dlls beside it with the necessary dlls. These needed to be manually stored in the ProtocolScripts folder.
Do note that not all NuGets will be supported yet. NuGets with native code for example is not supported as the internal structure of the NuGet is different.
But for most cases there should be no issues.