Is it possible for a generative type provider, when using the ProvidedTypes API, to add resources in addition to types to the assembly?
I'd like to build in specific resources generated along with the concrete types built by my provider. If this is possible, how would I accomplish it?
Does it need to be in the same assembly? You can only generate types, you have no control of the assembly that F# generates, but if it doesn't need to be in the same assembly, maybe you can generate an assembly with resources manually and then use a generated type provider to reference that. But it will probably be a long shot