Skip to content
Merged
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
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to update plugins to Trados Studio - 2026 Release
# How to update plugins to Trados Studio 2026 Release

The following are a list of changes and known issues to consider when updating your plugin to be compatible with Trados Studio - 2026 Release.
The following are a list of changes and known issues to consider when updating your plugin to be compatible with Trados Studio 2026 Release.

## Transition to 64-Bit (x64)
Studio Quantum is released as a 64-bit (x64) version. As a result, plug-ins must also be rebuilt and updated to target x64 in order to remain compatible.
Expand Down Expand Up @@ -155,7 +155,7 @@ public abstract void VisitStructure(StructureTag structureTag);
```

#### Assembly Version Change Requires Recompilation
With Trados Studio - 2026 Release, all core Trados assemblies have had their **assembly version increased to 19.x.x.x** (reflecting the semantic versioning minor update). **This assembly version bump introduces a breaking change:** Any plugin or standalone tool that references Trados assemblies must be recompiled against the new release, even if no other code changes are required. Referencing outdated assemblies is not supported and will likely result in runtime failures due to version mismatches.
With Trados Studio 2026 Release, all core Trados assemblies have had their **assembly version increased to 19.x.x.x** (reflecting the semantic versioning minor update). **This assembly version bump introduces a breaking change:** Any plugin or standalone tool that references Trados assemblies must be recompiled against the new release, even if no other code changes are required. Referencing outdated assemblies is not supported and will likely result in runtime failures due to version mismatches.
### Multiterm API Changes
**Migrate from `Sdl.Multiterm.TMO.Interop.dll` to `TerminologyProviderManager`**

Expand Down Expand Up @@ -215,11 +215,11 @@ var searchResults = terminologyProvider.Search(

// Process or display results as needed...
```
**Note:** Replace any references to `Sdl.Multiterm.TMO.Interop.dll` with the modern `TerminologyProviderManager` API. This ensures compatibility with Trados Studio - 2026 Release and future releases, and aligns with Trados ongoing architectural updates.
**Note:** Replace any references to `Sdl.Multiterm.TMO.Interop.dll` with the modern `TerminologyProviderManager` API. This ensures compatibility with Trados Studio 2026 Release and future releases, and aligns with Trados ongoing architectural updates.


### Trados.Community.Toolkit (formally SDL.Community.Toolkit)
A new version of the Trados Community Toolkit, version 6.0.2, has been released to support the latest version of Trados Studio - 2026 Release. This includes the following assemblies:
A new version of the Trados Community Toolkit, version 6.0.2, has been released to support the latest version of Trados Studio 2026 Release. This includes the following assemblies:

- [Trados.Community.Toolkit.Core](https://www.nuget.org/packages/Trados.Community.Toolkit.Core)
- [Trados.Community.Toolkit.LanguagePlatform](https://www.nuget.org/packages/Trados.Community.Toolkit.LanguagePlatform)
Expand Down
2 changes: 1 addition & 1 deletion articles/toc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
href: hints_tips/Better_Studio_interactivity/SR2ApiArticle.md
- name: Studio Look & Feel in your 3rd party plugin
href: hints_tips/Studio_Styles/StudioStyles.md
- name: How to update plugins to Trados Studio - 2026 Release
- name: How to update plugins to Trados Studio 2026 Release
href: hints_tips/Update_Plugins/how_to_update_plugins_to_trados_studio_2026.md
- name: How to implement the Studio Useful Tips service
href: hints_tips/UsefulTips/UsefulTipsApiArticle.md
Expand Down