From a96876cc7687d18a14e8bd8b61ea4bd425efc21c Mon Sep 17 00:00:00 2001 From: Kai Kriegel Date: Tue, 7 Sep 2021 21:29:10 +0000 Subject: [PATCH] Add README.md to explain how to work around c# code generation bug --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..b6b5a6e --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# FabAccess API + +## Code generation bugs under c# +When returning an Interface it may be required to append a dummy valueto work around a c# code generation bug. + +```diff +- whoami @4 () -> ( you :Api.User ); ++ whoami @4 () -> ( you :Api.User, dummy :UInt8 = 0 ); +```