Skip to content

Commit e0abd54

Browse files
authored
. (#1703)
1 parent 0dd8a15 commit e0abd54

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

benchmarks/AutoClusterBenchmark/AutoClusterBenchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net5.0;net6.0</TargetFrameworks>
4+
<TargetFrameworks>net5.0;net6.0;net7.0</TargetFrameworks>
55
<OutputType>Exe</OutputType>
66
<LangVersion>10</LangVersion>
77
<RootNamespace>ClusterExperiment1</RootNamespace>

benchmarks/InprocessBenchmark/InprocessBenchmark.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<OutputType>Exe</OutputType>
44
<ServerGarbageCollection>true</ServerGarbageCollection>
55
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
6-
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1</TargetFrameworks>
6+
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1;net7.0</TargetFrameworks>
77
<LangVersion>10</LangVersion>
88
</PropertyGroup>
99
<ItemGroup>

benchmarks/RemoteBenchmark/Node1/Node1.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ServerGarbageCollection>true</ServerGarbageCollection>
55
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
66
<LangVersion>10</LangVersion>
7-
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1</TargetFrameworks>
7+
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1;net7.0</TargetFrameworks>
88
</PropertyGroup>
99

1010
<ItemGroup>

benchmarks/RemoteBenchmark/Node2/Node2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<ServerGarbageCollection>true</ServerGarbageCollection>
55
<ConcurrentGarbageCollection>true</ConcurrentGarbageCollection>
66
<LangVersion>10</LangVersion>
7-
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1</TargetFrameworks>
7+
<TargetFrameworks>net5.0;net6.0;netcoreapp3.1;net7.0</TargetFrameworks>
88
</PropertyGroup>
99
<ItemGroup>
1010
<ProjectReference Include="..\..\..\src\Proto.Actor\Proto.Actor.csproj" />

benchmarks/SkyriseMini/Client/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
lcfg
1818
.ReadFrom.Configuration(builder.Configuration)
1919
.WriteTo.Console()
20-
.WriteTo.Seq(builder.Configuration["SeqUrl"])
20+
.WriteTo.Seq(builder.Configuration["SeqUrl"]!)
2121
.Enrich.WithProperty("Service", Assembly.GetExecutingAssembly().GetName().Name));
2222

2323

benchmarks/SkyriseMini/Client/ProtoActorExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static WebApplicationBuilder AddProtoActorClient(this WebApplicationBuild
5858
var clusterProvider = new ConsulProvider(new ConsulProviderConfig());
5959

6060
var clusterConfig = ClusterConfig
61-
.Setup(config["ClusterName"], clusterProvider, new PartitionIdentityLookup());
61+
.Setup(config["ClusterName"]!, clusterProvider, new PartitionIdentityLookup());
6262

6363
system
6464
.WithServiceProvider(provider)

benchmarks/SkyriseMini/Client/SkyriseMiniClient.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

benchmarks/SkyriseMini/Server/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
lcfg
1313
.ReadFrom.Configuration(builder.Configuration)
1414
.WriteTo.Console()
15-
.WriteTo.Seq(builder.Configuration["SeqUrl"])
15+
.WriteTo.Seq(builder.Configuration["SeqUrl"]!)
1616
.Enrich.WithProperty("Service", Assembly.GetExecutingAssembly().GetName().Name)
1717
);
1818

benchmarks/SkyriseMini/Server/ProtoActorExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public static WebApplicationBuilder AddProtoActorSUT(this WebApplicationBuilder
4949
var clusterProvider = new ConsulProvider(new ConsulProviderConfig());
5050

5151
var clusterConfig = ClusterConfig
52-
.Setup(config["ClusterName"], clusterProvider, new PartitionIdentityLookup())
52+
.Setup(config["ClusterName"]!, clusterProvider, new PartitionIdentityLookup())
5353
.WithClusterKind("PingPongRaw",Props.FromProducer(() => new PingPongActorRaw()) );
5454

5555
system

benchmarks/SkyriseMini/Server/SkyriseMiniServer.csproj

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

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

0 commit comments

Comments
 (0)