Hello, I am injecting a C# NativeAOT assembly into another process. I want to communicate with that process. Send requests and replies. I wanted to try and use Grpc for this, but it seems like I cannot do so without ASP.NET. Aside from being incompatible with the target framework, it may not be the best idea to start a web server from within a remote process.
How do I do this?
Otherwise, what similarly easy, .NET Standard 2.0-compatible implementation can I choose to exchange messages over named pipes?
Question
Hello, I am injecting a C# NativeAOT assembly into another process. I want to communicate with that process. Send requests and replies. I wanted to try and use Grpc for this, but it seems like I cannot do so without ASP.NET. Aside from being incompatible with the target framework, it may not be the best idea to start a web server from within a remote process.
How do I do this?
Otherwise, what similarly easy, .NET Standard 2.0-compatible implementation can I choose to exchange messages over named pipes?