chore: add 10.0.300 -> 10.0.127 to workload version map#308
chore: add 10.0.300 -> 10.0.127 to workload version map#308JoonghyunCho wants to merge 1 commit into
Conversation
Record the Tizen workload released for the .NET SDK 10.0.3xx band in version-map.json and regenerate the install scripts, so the offline fallback path resolves the correct workload version.
Summary of ChangesHello, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request updates the Tizen workload version map to ensure that users on the .NET SDK 10.0.3xx feature band correctly resolve to the latest Tizen Workload version (10.0.127). By updating the version mapping in the installation scripts, this change prevents the fallback mechanism from incorrectly resolving to older versions when NuGet is unreachable. Highlights
New Features🧠 You can now enable Memory (public preview) to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Ignored Files
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize the Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counterproductive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for GitHub and other Google products, sign up here. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request updates the workload installation scripts (workload-install.ps1 and workload-install.sh) to include the mapping for the 10.0.300 SDK band pointing to version 10.0.127 in the auto-generated version maps. No review comments were provided, and there is no additional feedback.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
Summary
Tizen Workload 10.0.127 was released for the .NET SDK 10.0.3xx feature band (see v10.0.127), but the version map on
main— which users fetch via the documentedworkload-install.sh/workload-install.ps1URLs — did not have an entry for the10.0.300band.{ "sdkBand": "10.0.300", "workloadVersion": "10.0.127" }toversion-map.jsonworkload-install.sh/workload-install.ps1viaGenerate-InstallScripts.ps1Without this entry, the install scripts still resolve correctly while nuget.org is reachable (NuGet-first lookup), but the offline/fallback path would resolve the stale
10.0.100 -> 10.0.123mapping for SDK 10.0.3xx users.Same change landed on
net10.0as fc559a8.