This SDK is included with the standard CWA installation and provides native APIs to programmatically launch and manage virtual app and desktop sessions.
Overall, the requirement of .NET Core 8.0 or later for Citrix Workspace highlights the importance of keeping underlying infrastructure and components up-to-date to ensure a secure, efficient, and compatible digital workspace experience. citrix workspace .net core 8.0 or later
To prevent the Workspace app from restarting during future .NET upgrades, it is recommended to apply specific registry entries, especially if runtime 8.0.10 or higher is already in use. For Developers: APIs and SDKs This SDK is included with the standard CWA
Technical Overview: Citrix Workspace App and .NET 8.0 Compatibility citrix workspace .net core 8.0 or later
if (-not (Test-Path "HKLM:\SOFTWARE\dotnet\Setup\InstalledVersions\x64\sharedfx\Microsoft.NETCore.App\8.0.4")) Write-Host "Downloading .NET 8 Desktop Runtime..." Invoke-WebRequest -Uri $dotnetUrl -OutFile $dotnet8Installer Start-Process -FilePath $dotnet8Installer -ArgumentList "/quiet /norestart" -Wait