Thank you for the responses.
I'll try both of them, but in the meantime I found another problem because of my lack of experience.
I'm trying to define in the baseline a dependency with another project, in particular the Stamp project by Sven Van Caekenberghe [1] in Smalltalkhub in the following way:
baseline01: spec
<version: '0.1-baseline'>
spec
for: #common
do: [�
spec blessing: #baseline.
spec repository: 'filetree://full-filesystempath-to-your-pharo-subdirectory'.
spec
project: 'Stamp-Core'
with: [�
spec
loads: 'Stamp';
version: #stable ].
spec
package: 'MyStompMessaging' with: [ spec requires: #('Stamp-Core') ] ]
When I evaluate the following in a Workspace:
(ConfigurationOfMyPackage project version: '0.1') load.
I get the followin error:
MessageNotUnderstood: receiver of "ensureLoadUsing:" is nil
In the debugger I see that MetacelloMCProjectSpec>>projectPackage is nil.
In an old thread I found that Dale Henrichs suggests to try this:
� MetacelloProjectRegistration
� � resetRegistry;
� � primeRegistryFromImage�
But in my case It does not solve the problem.
Thank you in advance.