David Langr
David Langr
Fixes #128. By using the running application's directory as the base path, the package won't access possibly non-writable working directories. https://github.com/mayuki/Cocona/assets/69001314/519c19c2-2dc9-4b3f-b6e5-ef3496a8eaea
When I'm trying to run a command line application built with Cocona, it crashes when its working directory is the file system's root directory (/). Other directories that aren't writable...
This PR enables registering all command classes inheriting from a shared interface. ```csharp // Rather than adding all command classes individually... app.AddCommands(); app.AddCommands(); app.AddCommands(); // ...you can add an interface...