Skip to content

Commit

Permalink
chore: Update all mixins in the generator and its generated projects
Browse files Browse the repository at this point in the history
  • Loading branch information
jskeet committed May 22, 2024
1 parent c4f2025 commit db9399e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<PackageReference Include="Google.Api.Gax.Grpc" Version="[4.8.0, 5.0.0)" />
<PackageReference Include="Grpc.Core" Version="[2.46.6, 3.0.0)" Condition="'$(TargetFramework)'=='net462'" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
<PackageReference Include="Google.LongRunning" Version="[3.2.0, 4.0.0)" />
<PackageReference Include="Google.LongRunning" Version="[3.3.0, 4.0.0)" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<PackageReference Include="Google.Api.Gax.Grpc" Version="[4.8.0, 5.0.0)" />
<PackageReference Include="Grpc.Core" Version="[2.46.6, 3.0.0)" Condition="'$(TargetFramework)'=='net462'" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
<PackageReference Include="Google.Cloud.Location" Version="[2.2.0, 3.0.0)" />
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.2.0, 4.0.0)" />
<PackageReference Include="Google.Cloud.Location" Version="[2.3.0, 3.0.0)" />
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.3.0, 4.0.0)" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
<PackageReference Include="Google.Api.Gax.Grpc" Version="[4.8.0, 5.0.0)" />
<PackageReference Include="Grpc.Core" Version="[2.46.6, 3.0.0)" Condition="'$(TargetFramework)'=='net462'" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
<PackageReference Include="Google.Cloud.Location" Version="[2.2.0, 3.0.0)" />
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.2.0, 4.0.0)" />
<PackageReference Include="Google.LongRunning" Version="[3.2.0, 4.0.0)" />
<PackageReference Include="Google.Cloud.Location" Version="[2.3.0, 3.0.0)" />
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.3.0, 4.0.0)" />
<PackageReference Include="Google.LongRunning" Version="[3.3.0, 4.0.0)" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions Google.Api.Generator/Generation/CsProjGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ internal static class CsProjGenerator
{
private const string GaxGrpcVersion = "[4.8.0, 5.0.0)";
private const string GrpcCoreVersion = "[2.46.6, 3.0.0)";
private const string LroVersion = "[3.2.0, 4.0.0)";
private const string IamVersion = "[3.2.0, 4.0.0)";
private const string LocationVersion = "[2.2.0, 3.0.0)";
private const string LroVersion = "[3.3.0, 4.0.0)";
private const string IamVersion = "[3.3.0, 4.0.0)";
private const string LocationVersion = "[2.3.0, 3.0.0)";
private const string ReferenceAssembliesVersion = "1.0.3";
private const string SystemLinqAsyncVersion = "6.0.1";
private static readonly Dictionary<string, (string, string)> ProtoPackageToNuGetPackageAndVersion = new Dictionary<string, (string, string)>
Expand Down
4 changes: 2 additions & 2 deletions Google.Api.Generator/Google.Api.Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Google.Api.Gax.Grpc" Version="4.8.0" />
<PackageReference Include="Google.Cloud.Iam.V1" Version="3.3.0" />
<PackageReference Include="Google.Cloud.Location" Version="2.2.0" />
<PackageReference Include="Google.LongRunning" Version="3.2.0" />
<PackageReference Include="Google.Cloud.Location" Version="2.3.0" />
<PackageReference Include="Google.LongRunning" Version="3.3.0" />
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
<PackageReference Include="YamlDotNet" Version="15.1.4" />
Expand Down

0 comments on commit db9399e

Please sign in to comment.