Blog
Writing on software, AI, and building things.
25 posts tagged developer. Clear filter
- Debugging code running on Remote machineNovember 22, 2019
Before performing below steps, you need to make sure you have pdb files matching dll version on the remote machine. Open below folder in your remote machine ...
- Dynamics365 PluginRegistration tool throws Error - Assembly must be fully signed (not delay signed) though you are uploading signed dll.August 1, 2019
You might be here because you are getting this misleading error "Assembly must be fully signed (not delay signed)" although you have successfully generated s...
- Dynamics365 PluginRegistration tool throws exception "System.IO.FileLoadException: Could not load file or assembly 'file:///C:\Users\...\xyz.dll' or one of its dependencies."July 31, 2019
If you are facing below highlighted error detail with PluginRegistration meaning you are trying to register signed/unsigned dll download over the network. Un...
- Date period overlapping scenariosOctober 28, 2017
Here is the code that does the magic: var isOverlapping = ((A == null || D == null || A <= D) && (C == null || B == null || C <= B) && (A == null || B == nul...
- Web Functional Testing Automation using CasperJS and NodejsDecember 25, 2016
Background We are in era the of Web, Mobility and AI. Days are gone where we used to think Javascript is just for client side validation check before submitt...