Skip to content

Commit 01ca175

Browse files
committed
break into 3 assemblies
1 parent 81db5cc commit 01ca175

20 files changed

+66
-2
lines changed

src/IpcServiceFramework.sln

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1818
..\README.md = ..\README.md
1919
EndProjectSection
2020
EndProject
21+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JKang.IpcServiceFramework.Client", "JKang.IpcServiceFramework.Client\JKang.IpcServiceFramework.Client.csproj", "{13D724CA-3FEA-49E1-BB6B-365CF9397986}"
22+
EndProject
23+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JKang.IpcServiceFramework.Core", "JKang.IpcServiceFramework.Core\JKang.IpcServiceFramework.Core.csproj", "{58200319-1F71-4E22-894D-7E69E0CD0B57}"
24+
EndProject
25+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JKang.IpcServiceFramework.Server", "JKang.IpcServiceFramework.Server\JKang.IpcServiceFramework.Server.csproj", "{069B416A-B2C6-40D1-80B8-AC9ACA2217E3}"
26+
EndProject
2127
Global
2228
GlobalSection(SolutionConfigurationPlatforms) = preSolution
2329
Debug|Any CPU = Debug|Any CPU
@@ -40,6 +46,18 @@ Global
4046
{8D54E62A-ECFF-4FFF-B9D1-DB343D456451}.Debug|Any CPU.Build.0 = Debug|Any CPU
4147
{8D54E62A-ECFF-4FFF-B9D1-DB343D456451}.Release|Any CPU.ActiveCfg = Release|Any CPU
4248
{8D54E62A-ECFF-4FFF-B9D1-DB343D456451}.Release|Any CPU.Build.0 = Release|Any CPU
49+
{13D724CA-3FEA-49E1-BB6B-365CF9397986}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
50+
{13D724CA-3FEA-49E1-BB6B-365CF9397986}.Debug|Any CPU.Build.0 = Debug|Any CPU
51+
{13D724CA-3FEA-49E1-BB6B-365CF9397986}.Release|Any CPU.ActiveCfg = Release|Any CPU
52+
{13D724CA-3FEA-49E1-BB6B-365CF9397986}.Release|Any CPU.Build.0 = Release|Any CPU
53+
{58200319-1F71-4E22-894D-7E69E0CD0B57}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
54+
{58200319-1F71-4E22-894D-7E69E0CD0B57}.Debug|Any CPU.Build.0 = Debug|Any CPU
55+
{58200319-1F71-4E22-894D-7E69E0CD0B57}.Release|Any CPU.ActiveCfg = Release|Any CPU
56+
{58200319-1F71-4E22-894D-7E69E0CD0B57}.Release|Any CPU.Build.0 = Release|Any CPU
57+
{069B416A-B2C6-40D1-80B8-AC9ACA2217E3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
58+
{069B416A-B2C6-40D1-80B8-AC9ACA2217E3}.Debug|Any CPU.Build.0 = Debug|Any CPU
59+
{069B416A-B2C6-40D1-80B8-AC9ACA2217E3}.Release|Any CPU.ActiveCfg = Release|Any CPU
60+
{069B416A-B2C6-40D1-80B8-AC9ACA2217E3}.Release|Any CPU.Build.0 = Release|Any CPU
4361
EndGlobalSection
4462
GlobalSection(SolutionProperties) = preSolution
4563
HideSolutionNode = FALSE

src/IpcServiceSample.ConsoleClient/IpcServiceSample.ConsoleClient.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
<ItemGroup>
99
<ProjectReference Include="..\IpcServiceSample.ServiceContracts\IpcServiceSample.ServiceContracts.csproj" />
10+
<ProjectReference Include="..\JKang.IpcServiceFramework.Client\JKang.IpcServiceFramework.Client.csproj" />
1011
<ProjectReference Include="..\JKang.IpcServiceFramework\JKang.IpcServiceFramework.csproj" />
1112
</ItemGroup>
1213

src/IpcServiceSample.ConsoleServer/IpcServiceSample.ConsoleServer.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
<ItemGroup>
99
<ProjectReference Include="..\IpcServiceSample.ServiceContracts\IpcServiceSample.ServiceContracts.csproj" />
10+
<ProjectReference Include="..\JKang.IpcServiceFramework.Server\JKang.IpcServiceFramework.Server.csproj" />
1011
<ProjectReference Include="..\JKang.IpcServiceFramework\JKang.IpcServiceFramework.csproj" />
1112
</ItemGroup>
1213

File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<RootNamespace>JKang.IpcServiceFramework</RootNamespace>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<ProjectReference Include="..\JKang.IpcServiceFramework.Core\JKang.IpcServiceFramework.Core.csproj" />
10+
</ItemGroup>
11+
12+
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<RootNamespace>JKang.IpcServiceFramework</RootNamespace>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
10+
</ItemGroup>
11+
12+
</Project>

0 commit comments

Comments
 (0)