Skip to content
This repository was archived by the owner on Mar 21, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ You can create an empty console application project targeting .NET Framework 4.6
Here is an example of how a client can connect to a local silo:

```csharp
client = new ClientBuilder()
var builder = new ClientBuilder()
// Use localhost clustering for a single local silo
.UseLocalhostClustering()
// Configure ClusterId and ServiceId
Expand All @@ -104,7 +104,8 @@ client = new ClientBuilder()
options.ClusterId = "dev";
options.ServiceId = "MyAwesomeService";
})
.ConfigureLogging(logging => logging.AddConsole())
.ConfigureLogging(logging => logging.AddConsole());

var client = builder.Build();
await client.Connect();
```