I am using Visual Studio 2019. To C:\Users...\Documents\Visual Studio 2019\Visualizers I have added the following dll files to enable a visualizer for predicate buckets by LLBL Gen Pro. This approach works for VS 2017.
The dll files: SD.LLBLGen.Pro.DebugVisualizers2017.dll, SD.LLBLGen.Pro.DQE.SqlServer.dll, SD.LLBLGen.Pro.ORMSupportClasses.dll
When trying to use it in VS19, I get the following error prompt:
Unable to load the custom visualizer. Could not load file or assembly 'SD.LLBLGen.Pro.DebugVisualizers2017, Version=5.5.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27' or one of its dependencies. Operation is not supported. (Exception from HRESULT: 0x80131515)
Has anyone encountered this problem before? What could I do about it?
The code snippet where I am trying to observe/ visualize the predicate:
class Something {
public void DoSG(TransactionListFilters filters)
{
var transactionBucket = GetTransactionBucket(filters);
var locationBucket = GetTransactionBucket(filters, false, true); }
...
}