Skip to content

Commit

Permalink
Update gRPC template to use 2.52.0 (dotnet#47214)
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesNK authored Mar 16, 2023
1 parent 354efd4 commit 2745e0b
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 7 deletions.
12 changes: 6 additions & 6 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -257,12 +257,12 @@
<CommandLineParserVersion>2.3.0</CommandLineParserVersion>
<FSharpCoreVersion>6.0.0</FSharpCoreVersion>
<GoogleApiCommonProtosVersion>2.5.0</GoogleApiCommonProtosVersion>
<GoogleProtobufVersion>3.21.6</GoogleProtobufVersion>
<GrpcAspNetCoreVersion>2.51.0</GrpcAspNetCoreVersion>
<GrpcAspNetCoreServerVersion>2.51.0</GrpcAspNetCoreServerVersion>
<GrpcAuthVersion>2.51.0</GrpcAuthVersion>
<GrpcNetClientVersion>2.51.0</GrpcNetClientVersion>
<GrpcToolsVersion>2.51.0</GrpcToolsVersion>
<GoogleProtobufVersion>3.22.0</GoogleProtobufVersion>
<GrpcAspNetCoreVersion>2.52.0</GrpcAspNetCoreVersion>
<GrpcAspNetCoreServerVersion>2.52.0</GrpcAspNetCoreServerVersion>
<GrpcAuthVersion>2.52.0</GrpcAuthVersion>
<GrpcNetClientVersion>2.52.0</GrpcNetClientVersion>
<GrpcToolsVersion>2.52.0</GrpcToolsVersion>
<DuendeIdentityServerAspNetIdentityVersion>6.0.4</DuendeIdentityServerAspNetIdentityVersion>
<DuendeIdentityServerEntityFrameworkVersion>6.0.4</DuendeIdentityServerEntityFrameworkVersion>
<DuendeIdentityServerVersion>6.0.4</DuendeIdentityServerVersion>
Expand Down
9 changes: 9 additions & 0 deletions src/Grpc/Interop/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />

<PropertyGroup>
<!-- TODO: Remove when Grpc.Tools on MacOS 11 is fixed. See https://github.com/grpc/grpc/issues/32558 -->
<ExcludeFromBuild Condition="'$(TargetOsName)' == 'osx'">true</ExcludeFromBuild>
</PropertyGroup>

</Project>
9 changes: 9 additions & 0 deletions src/Grpc/JsonTranscoding/perf/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />

<PropertyGroup>
<!-- TODO: Remove when Grpc.Tools on MacOS 11 is fixed. See https://github.com/grpc/grpc/issues/32558 -->
<ExcludeFromBuild Condition="'$(TargetOsName)' == 'osx'">true</ExcludeFromBuild>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<TieredCompilation>false</TieredCompilation>
<DefineConstants>$(DefineConstants);IS_BENCHMARKS</DefineConstants>
<!-- TODO: Remove when Grpc.Tools on MacOS 11 is fixed. See https://github.com/grpc/grpc/issues/32558 -->
<SkipMicrobenchmarksValidation>true</SkipMicrobenchmarksValidation>
</PropertyGroup>

<ItemGroup>
Expand Down
9 changes: 9 additions & 0 deletions src/Grpc/JsonTranscoding/test/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<Project>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />

<PropertyGroup>
<!-- TODO: Remove when Grpc.Tools on MacOS 11 is fixed. See https://github.com/grpc/grpc/issues/32558 -->
<ExcludeFromBuild Condition="'$(TargetOsName)' == 'osx'">true</ExcludeFromBuild>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

<ItemGroup>
<PackageReference Include="Grpc.AspNetCore" Version="${GrpcAspNetCoreVersion}" />
<PackageReference Include="Google.Protobuf" Version="3.22.0-rc2" />
</ItemGroup>

</Project>

0 comments on commit 2745e0b

Please sign in to comment.