microsoft / fhir-codegen

Tools for code generation based on the FHIR specification.
MIT License
123 stars 51 forks source link

Export from any package will not generate any files #144

Open wardweistra opened 1 year ago

wardweistra commented 1 year ago

When I do an export (eg CSharp2) from any package it does say that it successfully completed, but I can't find the file anywhere: image

As reported here https://chat.fhir.org/#narrow/stream/179171-dotnet/topic/Microsoft.20fhir-codegen-cli/near/383005716

GinoCanessa commented 1 year ago

Thanks Ward - I believe the issue is the extension conflicting with the exporter.

The CSharp2 language does not allow for a 'single file' export (except for .zip), and is probably trying to write a directory into something.txt and failing. The console output from running the program would be helpful in order to more quickly fix. Otherwise, I will try to replicate and go from there.