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
Describe the bug
I am in the process of updating my custom code generators to Entitas 1.14 and encountered the following bug.
When using dotnet Jenny/Jenny.Generator.Cli.dll wiz the Assets\Entitas of SearchPaths line is automatically removed, resulting in errors when generating
To Reproduce
Steps to reproduce the behavior:
Add a custom code generator
Use dotnet Jenny/Jenny.Generator.Cli.dll wiz to scan for the new generator
Add the new generator and finish the dry run
The Assets\Entitas line is now missing
Generating results in an error stating the Entitas assembly could not be found, as expected by the removal of the SearchPath
Describe the bug
I am in the process of updating my custom code generators to Entitas 1.14 and encountered the following bug.
When using
dotnet Jenny/Jenny.Generator.Cli.dll wiz
theAssets\Entitas
of SearchPaths line is automatically removed, resulting in errors when generatingTo Reproduce
Steps to reproduce the behavior:
dotnet Jenny/Jenny.Generator.Cli.dll wiz
to scan for the new generatorAssets\Entitas
line is now missingExpected behavior
Do not remove valid SearchPaths
When diving through the jenny code I assume this part is responsible for doing this:
https://github.com/sschmid/Jenny/blob/518529e6dd1f33b816cb30ab216b98c44c07f0dc/src/Jenny.Generator.Cli/FixCommand.cs#L85
As this path technically only contains dependencies and no active plugins, it is seen as unused and removed.
I can offer to create a pull request to jenny, but want to clear beforehand if the following method would be a suitable fix:
The text was updated successfully, but these errors were encountered: