Skip to content

Commit aabe4f1

Browse files
committed
update readme
1 parent 9931feb commit aabe4f1

File tree

2 files changed

+18
-7
lines changed

2 files changed

+18
-7
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,9 +119,15 @@ namespace IpcServiceSample.ConsoleServer
119119

120120
private static IServiceCollection ConfigureServices(IServiceCollection services)
121121
{
122-
return services
123-
.AddScoped<IMyIpcService, MyIpcService>() // IoC registeration
122+
services
123+
.AddLogging();
124+
125+
services
126+
.AddIpc()
127+
.AddService<IMyIpcService, MyIpcService>()
124128
;
129+
130+
return services;
125131
}
126132
}
127133
}

src/IpcServiceFramework.sln

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27004.2002
4+
VisualStudioVersion = 15.0.27004.2009
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JKang.IpcServiceFramework", "JKang.IpcServiceFramework\JKang.IpcServiceFramework.csproj", "{83931898-A23F-4D45-8F3F-D63481352862}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "JKang.IpcServiceFramework", "JKang.IpcServiceFramework\JKang.IpcServiceFramework.csproj", "{83931898-A23F-4D45-8F3F-D63481352862}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Samples", "Samples", "{03210BFB-17B1-4775-A8A2-D302ECBF2F46}"
99
EndProject
10-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IpcServiceSample.ServiceContracts", "IpcServiceSample.ServiceContracts\IpcServiceSample.ServiceContracts.csproj", "{D1ADB92C-B4FB-40DD-911E-46360A23381B}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IpcServiceSample.ServiceContracts", "IpcServiceSample.ServiceContracts\IpcServiceSample.ServiceContracts.csproj", "{D1ADB92C-B4FB-40DD-911E-46360A23381B}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IpcServiceSample.ConsoleServer", "IpcServiceSample.ConsoleServer\IpcServiceSample.ConsoleServer.csproj", "{24A3C4D2-95A2-48D9-86F2-648879EC74F4}"
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IpcServiceSample.ConsoleServer", "IpcServiceSample.ConsoleServer\IpcServiceSample.ConsoleServer.csproj", "{24A3C4D2-95A2-48D9-86F2-648879EC74F4}"
1313
EndProject
14-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "IpcServiceSample.ConsoleClient", "IpcServiceSample.ConsoleClient\IpcServiceSample.ConsoleClient.csproj", "{8D54E62A-ECFF-4FFF-B9D1-DB343D456451}"
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IpcServiceSample.ConsoleClient", "IpcServiceSample.ConsoleClient\IpcServiceSample.ConsoleClient.csproj", "{8D54E62A-ECFF-4FFF-B9D1-DB343D456451}"
15+
EndProject
16+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{20913218-C740-42E9-9D17-CAD973B676D0}"
17+
ProjectSection(SolutionItems) = preProject
18+
..\README.md = ..\README.md
19+
EndProjectSection
1520
EndProject
1621
Global
1722
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)