Closed
Description
Do you have planned to add support for unix platforms?
According to this example it seems to be doable:
https://github.com/dotnet/samples/blob/main/core/hosting/HostWithHostFxr/src/NativeHost/nativehost.cpp
However I have noticed a distinction regarding strings which seem to be wide on windows (typedef wchar_t char_t
) but not on unix (typedef char char_t
).
Would be happy to contribute to this addition but help might be needed.