Skip to content

Commit 085e2b9

Browse files
authored
fix quick start
1 parent a6e900c commit 085e2b9

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,14 @@ IpcServiceFramework is available via NuGet:
6565

6666
private static IServiceCollection ConfigureServices(IServiceCollection services)
6767
{
68-
return services
68+
services
6969
.AddIpc()
7070
.AddNamedPipe(options =>
7171
{
7272
options.ThreadCount = 2;
73-
})
73+
});
74+
75+
return services
7476
.AddService<IComputingService, ComputingService>();
7577
}
7678
}

0 commit comments

Comments
 (0)