You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
out-of-process
About this tag
The out-of-process tag on WindowsForum.com covers discussions about running code or components in a separate process from the main application. A prominent example is JetBrains ReSharper 2025.2, which moves heavy analysis out of Visual Studio's UI process into a dedicated 64-bit worker process, reducing UI freezes by 61%. Another topic involves calling WinRT components from Win32 processes via the Desktop Bridge, where out-of-process execution enables package identity and component registration. These threads highlight performance improvements and architectural changes achieved by isolating work outside the main process.
JetBrains has pushed a major architectural change into ReSharper 2025.2 that moves most heavy analysis out of Visual Studio’s UI process into a separate 64‑bit worker process — a shift the company says reduces cumulative UI freezes during solution startup by roughly 61 percent in its lab tests...
In today’s post, we are covering another step you can take on your journey across the Desktop Bridge: specifically migrating business logic to Windows Runtime Components, aka WinRT Components. Previously, Windows only supported calling OS provided WinRT components from Win32 applications. Any...