From 88beec6fbf33718e32335e3850e353330c024a90 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Oct 2025 15:29:44 +0000 Subject: [PATCH 1/2] Initial plan From d8572fd3b8d9231d2a09d5642dd1bd52e1e2874b Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 20 Oct 2025 15:41:53 +0000 Subject: [PATCH 2/2] Add Microsoft.Orleans.Streaming NuGet package requirement to Orleans 7.0 streaming quickstart Co-authored-by: IEvangelist <7679720+IEvangelist@users.noreply.github.com> --- docs/orleans/streaming/streams-quick-start.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/orleans/streaming/streams-quick-start.md b/docs/orleans/streaming/streams-quick-start.md index dfd736a622305..9c0b3b88bccad 100644 --- a/docs/orleans/streaming/streams-quick-start.md +++ b/docs/orleans/streaming/streams-quick-start.md @@ -18,6 +18,8 @@ This guide shows you a quick way to set up and use Orleans Streams. To learn mor In this guide, you use a memory-based stream that uses grain messaging to send stream data to subscribers. You use the in-memory storage provider to store lists of subscriptions. Using memory-based mechanisms for streaming and storage is intended only for local development and testing, not for production environments. +Orleans streaming requires the [Microsoft.Orleans.Streaming](https://www.nuget.org/packages/Microsoft.Orleans.Streaming) NuGet package. This package provides the streaming functionality for both the client and server, including the `AddMemoryStreams` extension method used in this guide. + On the silo, where `silo` is an , call : ```csharp