Skip to content

Commit 89cf633

Browse files
authored
Fix C-core running under 5.0 in benchmark environment (#569)
1 parent 6df15cc commit 89cf633

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

perf/benchmarkapps/GrpcCoreServer/GrpcCoreServer.csproj

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

33
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
54
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<TargetFramework Condition="'$(BenchmarksTargetFramework)' != ''">$(BenchmarksTargetFramework)</TargetFramework>
6+
<OutputType>Exe</OutputType>
67
</PropertyGroup>
78

89
<ItemGroup>

0 commit comments

Comments
 (0)