Skip to content

Commit a7edb89

Browse files
committed
chore: Update all mixins in the generator and its generated projects
Closes #802.
1 parent c4f2025 commit a7edb89

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

Google.Api.Generator.Tests/ProtoTests/Lro/Testing.Lro/Testing.Lro.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<PackageReference Include="Google.Api.Gax.Grpc" Version="[4.8.0, 5.0.0)" />
4343
<PackageReference Include="Grpc.Core" Version="[2.46.6, 3.0.0)" Condition="'$(TargetFramework)'=='net462'" />
4444
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
45-
<PackageReference Include="Google.LongRunning" Version="[3.2.0, 4.0.0)" />
45+
<PackageReference Include="Google.LongRunning" Version="[3.3.0, 4.0.0)" />
4646
</ItemGroup>
4747

4848
</Project>

Google.Api.Generator.Tests/ProtoTests/Mixins/Testing.Mixins/Testing.Mixins.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
<PackageReference Include="Google.Api.Gax.Grpc" Version="[4.8.0, 5.0.0)" />
4343
<PackageReference Include="Grpc.Core" Version="[2.46.6, 3.0.0)" Condition="'$(TargetFramework)'=='net462'" />
4444
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
45-
<PackageReference Include="Google.Cloud.Location" Version="[2.2.0, 3.0.0)" />
46-
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.2.0, 4.0.0)" />
45+
<PackageReference Include="Google.Cloud.Location" Version="[2.3.0, 3.0.0)" />
46+
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.3.0, 4.0.0)" />
4747
</ItemGroup>
4848

4949
</Project>

Google.Api.Generator.Tests/ProtoTests/Showcase/Google.Showcase.V1Beta1/Google.Showcase.V1Beta1.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
<PackageReference Include="Google.Api.Gax.Grpc" Version="[4.8.0, 5.0.0)" />
4343
<PackageReference Include="Grpc.Core" Version="[2.46.6, 3.0.0)" Condition="'$(TargetFramework)'=='net462'" />
4444
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
45-
<PackageReference Include="Google.Cloud.Location" Version="[2.2.0, 3.0.0)" />
46-
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.2.0, 4.0.0)" />
47-
<PackageReference Include="Google.LongRunning" Version="[3.2.0, 4.0.0)" />
45+
<PackageReference Include="Google.Cloud.Location" Version="[2.3.0, 3.0.0)" />
46+
<PackageReference Include="Google.Cloud.Iam.V1" Version="[3.3.0, 4.0.0)" />
47+
<PackageReference Include="Google.LongRunning" Version="[3.3.0, 4.0.0)" />
4848
</ItemGroup>
4949

5050
</Project>

Google.Api.Generator/Generation/CsProjGenerator.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ internal static class CsProjGenerator
2525
{
2626
private const string GaxGrpcVersion = "[4.8.0, 5.0.0)";
2727
private const string GrpcCoreVersion = "[2.46.6, 3.0.0)";
28-
private const string LroVersion = "[3.2.0, 4.0.0)";
29-
private const string IamVersion = "[3.2.0, 4.0.0)";
30-
private const string LocationVersion = "[2.2.0, 3.0.0)";
28+
private const string LroVersion = "[3.3.0, 4.0.0)";
29+
private const string IamVersion = "[3.3.0, 4.0.0)";
30+
private const string LocationVersion = "[2.3.0, 3.0.0)";
3131
private const string ReferenceAssembliesVersion = "1.0.3";
3232
private const string SystemLinqAsyncVersion = "6.0.1";
3333
private static readonly Dictionary<string, (string, string)> ProtoPackageToNuGetPackageAndVersion = new Dictionary<string, (string, string)>

Google.Api.Generator/Google.Api.Generator.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<PackageReference Include="CommandLineParser" Version="2.9.1" />
1111
<PackageReference Include="Google.Api.Gax.Grpc" Version="4.8.0" />
1212
<PackageReference Include="Google.Cloud.Iam.V1" Version="3.3.0" />
13-
<PackageReference Include="Google.Cloud.Location" Version="2.2.0" />
14-
<PackageReference Include="Google.LongRunning" Version="3.2.0" />
13+
<PackageReference Include="Google.Cloud.Location" Version="2.3.0" />
14+
<PackageReference Include="Google.LongRunning" Version="3.3.0" />
1515
<PackageReference Include="System.Collections.Immutable" Version="8.0.0" />
1616
<PackageReference Include="System.Linq.Async" Version="6.0.1" />
1717
<PackageReference Include="YamlDotNet" Version="15.1.4" />

0 commit comments

Comments
 (0)