dotnet.withApplicationArguments(...args).run(), but to create files beforehand, I need the module so I can access FS on it before running it to add the files, but whenever I do dotnet.create() it no longer gives me console output (it does still seem to give me the exit code though). For example, dotnet.create().then((x) => { return x.runMainAndExit(undefined, args) }).then((x) => console.log(x)) just prints 1. What am I doing wrong that I don't get console output from it?