Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/csharp/build/dependencies.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!-- This file is generated -->
<Project>
<PropertyGroup>
<GrpcCsharpVersion>2.73.0-dev</GrpcCsharpVersion>
<GrpcCsharpVersion>2.73.1</GrpcCsharpVersion>
<GoogleProtobufVersion>4.31.0</GoogleProtobufVersion>
</PropertyGroup>
</Project>
14 changes: 9 additions & 5 deletions tools/buildgen/generate_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,15 @@ def preprocess_build_files() -> _utils.Bunch:
with open(build_file, "r") as f:
_utils.merge_json(build_spec, yaml.safe_load(f.read()))
# Execute the csharp_version plugin update.
if 'settings' in build_spec:
settings = build_spec['settings']
version = settings.get('version')
if isinstance(version, str) and version and 'csharp_version' not in settings:
settings['csharp_version'] = version
if "settings" in build_spec:
settings = build_spec["settings"]
version = settings.get("version")
if (
isinstance(version, str)
and version
and "csharp_version" not in settings
):
settings["csharp_version"] = version
# Executes plugins. Plugins update the build spec in-place.
for py_file in sorted(glob.glob("tools/buildgen/plugins/*.py")):
plugin = _utils.import_python_module(py_file)
Expand Down