Replies: 2 comments 9 replies
-
I think it could be possible. VSCode lets us spawn a LanguageServer and interact with it via a type called export type ServerOptions = Executable | { run: Executable; debug: Executable; } | { run: NodeModule; debug: NodeModule } | NodeModule | (() => Promise<ChildProcess | StreamInfo | MessageTransports | ChildProcessInfo>); Of all of these options, I think it would be pretty simple to return a export interface StreamInfo {
writer: NodeJS.WritableStream;
reader: NodeJS.ReadableStream;
detached?: boolean;
} where the WritableStream would be mapped to the |
Beta Was this translation helpful? Give feedback.
-
Have you tried dev containers? (https://code.visualstudio.com/docs/remote/containers) |
Beta Was this translation helpful? Give feedback.
-
Hi, I'm wondering if it would be possible for the ionide extension to connect to a running Docker container with .NET in it.
So imagine I spin a container and keep it running in the background:
I map the volumes and such and then the FASC is started from there.
Expose the right ports and connection from the editor.
Would such a thing be feasible?
Beta Was this translation helpful? Give feedback.
All reactions