Skip to content

Commit 128d4d9

Browse files
committed
[修改]1. 修改编译版本错误
1 parent 668e27a commit 128d4d9

File tree

15 files changed

+56
-40
lines changed

15 files changed

+56
-40
lines changed

Directory.Build.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<LangVersion>10.0</LangVersion>
4-
<TargetFramework>net8.0</TargetFramework>
3+
<LangVersion>10.0</LangVersion>
54
<ImplicitUsings>enable</ImplicitUsings>
65
<Nullable>disable</Nullable>
76
<Version>1.0.1</Version>

src/GameFrameX.SuperSocket.Client.Proxy/GameFrameX.SuperSocket.Client.Proxy.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>SuperSocket client proxy library</Description>
4+
<TargetFramework>net8.0</TargetFramework>
45
</PropertyGroup>
56
<ItemGroup>
67
<ProjectReference Include="..\GameFrameX.SuperSocket.Client\GameFrameX.SuperSocket.Client.csproj" />
Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<Description>SuperSocket client library</Description>
4-
</PropertyGroup>
5-
<ItemGroup>
6-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
7-
</ItemGroup>
8-
<ItemGroup>
9-
<ProjectReference Include="..\GameFrameX.SuperSocket.Connection\GameFrameX.SuperSocket.Connection.csproj" />
10-
<ProjectReference Include="..\GameFrameX.SuperSocket.ProtoBase\GameFrameX.SuperSocket.ProtoBase.csproj" />
11-
</ItemGroup>
2+
<PropertyGroup>
3+
<Description>SuperSocket client library</Description>
4+
<TargetFramework>net8.0</TargetFramework>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0"/>
8+
</ItemGroup>
9+
<ItemGroup>
10+
<ProjectReference Include="..\GameFrameX.SuperSocket.Connection\GameFrameX.SuperSocket.Connection.csproj"/>
11+
<ProjectReference Include="..\GameFrameX.SuperSocket.ProtoBase\GameFrameX.SuperSocket.ProtoBase.csproj"/>
12+
</ItemGroup>
1213
</Project>

src/GameFrameX.SuperSocket.ClientEngine/GameFrameX.SuperSocket.ClientEngine.csproj

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

33
<PropertyGroup>
44
<Description>Client Engine</Description>
5+
<TargetFramework>net8.0</TargetFramework>
56
</PropertyGroup>
67

78
<ItemGroup>
Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<Description>SuperSocket command pattern library which allow you to handle requests with commands.</Description>
4-
</PropertyGroup>
5-
<ItemGroup>
6-
<PackageReference Include="System.Text.Json" Version="8.0.0" />
7-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
8-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0" />
9-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
10-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
11-
</ItemGroup>
12-
<ItemGroup>
13-
<ProjectReference Include="..\GameFrameX.SuperSocket.Primitives\GameFrameX.SuperSocket.Primitives.csproj" />
14-
<ProjectReference Include="..\GameFrameX.SuperSocket.Server.Abstractions\GameFrameX.SuperSocket.Server.Abstractions.csproj" />
15-
</ItemGroup>
2+
<PropertyGroup>
3+
<Description>SuperSocket command pattern library which allow you to handle requests with commands.</Description>
4+
<TargetFramework>net8.0</TargetFramework>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<PackageReference Include="System.Text.Json" Version="8.0.0"/>
8+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0"/>
9+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="8.0.0"/>
10+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0"/>
11+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0"/>
12+
</ItemGroup>
13+
<ItemGroup>
14+
<ProjectReference Include="..\GameFrameX.SuperSocket.Primitives\GameFrameX.SuperSocket.Primitives.csproj"/>
15+
<ProjectReference Include="..\GameFrameX.SuperSocket.Server.Abstractions\GameFrameX.SuperSocket.Server.Abstractions.csproj"/>
16+
</ItemGroup>
1617
</Project>
Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<Description>SuperSocket library to abstract underlying communications as connection with pipeline.</Description>
4-
</PropertyGroup>
5-
<ItemGroup>
6-
<PackageReference Include="System.IO.Pipelines" Version="8.0.0" />
7-
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
8-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
9-
</ItemGroup>
10-
<ItemGroup>
11-
<ProjectReference Include="..\GameFrameX.SuperSocket.ProtoBase\GameFrameX.SuperSocket.ProtoBase.csproj" />
12-
</ItemGroup>
2+
<PropertyGroup>
3+
<Description>SuperSocket library to abstract underlying communications as connection with pipeline.</Description>
4+
<TargetFramework>net8.0</TargetFramework>
5+
</PropertyGroup>
6+
<ItemGroup>
7+
<PackageReference Include="System.IO.Pipelines" Version="8.0.0"/>
8+
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0"/>
9+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0"/>
10+
</ItemGroup>
11+
<ItemGroup>
12+
<ProjectReference Include="..\GameFrameX.SuperSocket.ProtoBase\GameFrameX.SuperSocket.ProtoBase.csproj"/>
13+
</ItemGroup>
1314
</Project>

src/GameFrameX.SuperSocket.Http/GameFrameX.SuperSocket.Http.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>SuperSocket shared util classes for HTTP like protocol</Description>
4+
<TargetFramework>net8.0</TargetFramework>
45
</PropertyGroup>
56
<ItemGroup>
67
<ProjectReference Include="..\GameFrameX.SuperSocket.ProtoBase\GameFrameX.SuperSocket.ProtoBase.csproj" />

src/GameFrameX.SuperSocket.Kestrel/GameFrameX.SuperSocket.Kestrel.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<Description>SuperSocket Kestrel library</Description>
4+
<TargetFramework>net8.0</TargetFramework>
5+
</PropertyGroup>
26
<ItemGroup>
37
<ProjectReference Include="..\GameFrameX.SuperSocket.Connection\GameFrameX.SuperSocket.Connection.csproj" />
48
<ProjectReference Include="..\GameFrameX.SuperSocket.Server.Abstractions\GameFrameX.SuperSocket.Server.Abstractions.csproj" />

src/GameFrameX.SuperSocket.Primitives/GameFrameX.SuperSocket.Primitives.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>SuperSocket primitive interfaces and classes.</Description>
4+
<TargetFramework>net8.0</TargetFramework>
45
</PropertyGroup>
56
<ItemGroup>
67
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0"/>
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>SuperSocket protocol decoding library.</Description>
4+
<TargetFramework>net8.0</TargetFramework>
45
</PropertyGroup>
56
</Project>

0 commit comments

Comments
 (0)