Issue and Resolution Summary
I quickly discovered what was causing the issue. Sharing it here to help others avoid the same mistake.
Background:
I was using a dependent assembly package for the plugin assembly. The unpacked solution was checked into Git, and the build pipeline was repackaging it before deployment. However, the deployment was failing.
Cause of the Issue:
A required NuGet package from the unpacked solution was not syncing with Git from my local.
Solution:
I resolved the issue by updating my .gitignore
file to include the specific NuGet package. After this change, everything worked as expected.
Alternative Approach:
This issue could also be resolved by configuring file mapping for the NuGet package in the build pipeline during the solution packaging process.
This error typically occurs when the system cannot find a record for the PluginType with the specified hash value.
Apologies if you've tried these already, just thinking:
is the plugin assembly associated with the PluginType present in the target environment? If not, re-import the plugin assembly into the target environment before importing the solution.
could there be a mismatch between the PluginType in the source and target environments? validate the PluginType exists in the target environment and matches the one in the source environment.
any dependencies that might be causing the issue? verify all dependencies are present configured in the target environment.
all else fails - try cleaning up the target environment by removing any remnants of the previous import and then re-importing the solution
André Arnaud de Cal...
292,884
Super User 2025 Season 1
Martin Dráb
231,760
Most Valuable Professional
nmaenpaa
101,156
Moderator