How can you use existing code in a notebook? #3046
-
B"H I would like to reference an existing .net project in my notebook. I tried
but I am getting quite a few errors. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
It's hard to say without knowing which errors you're getting but I'm going to guess you're missing a bunch of assembly references. This approach can work but you'll also need We do want to add direct support for this (#890) but it's been on the backlog for a while. |
Beta Was this translation helpful? Give feedback.
It's hard to say without knowing which errors you're getting but I'm going to guess you're missing a bunch of assembly references. This approach can work but you'll also need
#r
statements for all of the transitive dependencies of MyWebApp.dll, which can be a little complicated.We do want to add direct support for this (#890) but it's been on the backlog for a while.