Anyone know the structure i'd need to mock to get ...
# general
w
Anyone know the structure i'd need to mock to get a stackreference to return outputs? specifically in c#
b
does a dictionary bag on key "outputs" not work?
w
nope
I which it did đŸ˜„
I'm probably doing some weirdly wrong
you'll love this...
Copy code
{ "secretOutputNames", new Dictionary<string, object>() }
is required...
sorry...
Copy code
{ "secretOutputNames", new List<string>() }
b
lol, that’s odd but makes a weird kind of sense I guess