-
Hello, I would like to ask if it is possible to build the extensions with the source code, move the files to the extensions folder of the windows application and then run it on the windows application. Because i tried that and it didnt work. For example even the amount of files compared between the build version and the .msi file werent the same, here the .msi had more. My goal is to write my own extension and test them out. Could you help me find a way to make that happen Sincerely Chris |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
There are several reasons why your library is not loaded:
Some partial guidance is collected in the Wiki. I admit I must work on it, but still, it's something you can use to start. I hope it helps. Simone |
Beta Was this translation helpful? Give feedback.
The latest versions include full debug symbols. Moreover, you can download the sources from GitHub. Normally, you should not be concerned with debugging my code because your focus should be on your code, but having full debug symbols and the sources available should allow you to gain insights into what happens in the engine and in other parts of my code.
Debugging involves configuring a project to run threatsmanager.exe when you start debugging your library. Then, you include a breakpoint in your code and check what you receive as input to your Extension. If your library is not loaded, you may not have configured TMS to load it. You can just open TMS and configure the location of your deb…