Skip to content

Commit

Permalink
Bump up protobuf library version (#58)
Browse files Browse the repository at this point in the history
* bump up protobuf library version to 3.19.5

* bump up sdk version

* fix protoc path
  • Loading branch information
NRHelmi authored Jan 19, 2023
1 parent 2907a0d commit e3118b6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Changelog

# v0.9.10-alpha
* Bump up google protobuf version.
# v0.9.9-alpha
* Fix `GetOAuthClientResponse` deserialization issue
# v0.9.8-alpha
Expand Down
10 changes: 5 additions & 5 deletions RelationalAI/RelationalAI.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>0.9.9-alpha</Version>
<Version>0.9.10-alpha</Version>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>RAI</PackageId>
<Authors>RelationalAI</Authors>
Expand Down Expand Up @@ -38,13 +38,13 @@
</PackageReference>
<PackageReference Include="HttpMultipartParser" Version="5.1.0" />
<PackageReference Include="Microsoft.Data.Analysis" Version="0.19.0" />
<PackageReference Include="Google.Protobuf" Version="3.19.0" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.19.0" />
<PackageReference Include="Google.Protobuf" Version="3.19.5" />
<PackageReference Include="Google.Protobuf.Tools" Version="3.19.5" />
</ItemGroup>

<Target Name="protogen" BeforeTargets="BeforeBuild">
<Exec Condition="$([MSBuild]::IsOSPlatform('Linux'))" Command="$(NugetPackageRoot)google.protobuf.tools\3.19.0\tools\linux_x64\protoc --proto_path=$(ProjectDir)/Protos --csharp_out=Protos/Generated $(ProjectDir)/Protos/*.proto" />
<Exec Condition="$([MSBuild]::IsOSPlatform('OSX'))" Command="$(NugetPackageRoot)google.protobuf.tools\3.19.0\tools\macosx_x64\protoc --proto_path=$(ProjectDir)/Protos --csharp_out=Protos/Generated $(ProjectDir)/Protos/*.proto" />
<Exec Condition="$([MSBuild]::IsOSPlatform('Linux'))" Command="$(NugetPackageRoot)google.protobuf.tools\3.19.5\tools\linux_x64\protoc --proto_path=$(ProjectDir)/Protos --csharp_out=Protos/Generated $(ProjectDir)/Protos/*.proto" />
<Exec Condition="$([MSBuild]::IsOSPlatform('OSX'))" Command="$(NugetPackageRoot)google.protobuf.tools\3.19.5\tools\macosx_x64\protoc --proto_path=$(ProjectDir)/Protos --csharp_out=Protos/Generated $(ProjectDir)/Protos/*.proto" />
</Target>

</Project>

0 comments on commit e3118b6

Please sign in to comment.