You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Solving the Dynamo base path then gets you the next error below.
LibG ProtoInterface DLL not found error
System.NotImplementedException : Could not load file or assembly 'file:///C:\Program Files\Dynamo\Dynamo Core\2\libg_0_0_0\LibG.ProtoInterface.dll' or one of its dependencies. The system cannot find the file specified.
Adding a reference to LibG.ProtoInterface.dll found in C:\Program Files\Dynamo\Dynamo Core\2 does not solve the issue.
Downloading the DynamoCoreRuntime version 2.2.1 and changing the config in the TestServices.dll.config fixes that issue :
At the moment, the setup for the unit tests
TestServices.dll.config
DynamoBasePath
hardcoded to @SHKnudsen's Dynamo folder built from sourceThis means that cloning the the standard developer experience fails :
fails here
Dynamo base path error
The error logged for every test that inherits from
GeometricTestBase
is :Solving the Dynamo base path then gets you the next error below.
LibG ProtoInterface DLL not found error
Adding a reference to
LibG.ProtoInterface.dll
found inC:\Program Files\Dynamo\Dynamo Core\2
does not solve the issue.Downloading the
DynamoCoreRuntime
version2.2.1
and changing the config in theTestServices.dll.config
fixes that issue :before
after
Turns out removing
RequestedLibraryVersion
key is safe.Removing TestServices.dll.config
Tried removing the configuration file and of course the tests can no longer locate libG, with same error as first one above.
The text was updated successfully, but these errors were encountered: