BI Dashboard .NET Limitations
- 2 minutes to read
This topic describes .NET platform limitations for the DevExpress BI Dashboard.
System.Drawing.Common Package
Version 6
With the release of .NET 6, the System.Drawing.Common library is compatible with Windows only. See the following Microsoft documentation topic for more information: System.Drawing.Common only supported on Windows.
Use one of the following options to fix this issue:
Replace the System.Drawing.Common library with the earlier version 5.0.3.
Version 5.0.3 retains compatibility with Linux, MacOS, and other platforms. An application built for these platforms does not throw the exception described above. Note that Microsoft does not issue fixes for non-Windows bugs and vulnerabilities.
As a temporary workaround, enable the System.Drawing.EnableUnixSupport configuration property to prevent the exception on non-Windows platforms. You should add a runtimeconfig.template.json file to your project with the following code:
{ "configProperties": { "System.Drawing.EnableUnixSupport": true } }
This file is a template for the runtimeconfig.json files generated by your project. For more information, review the following help topic in the Microsoft documentation: .NET Runtime configuration settings.
Tip
Are you currently using .NET Framework and ready to transition to .NET 8+ or move your solutions to the Cloud?
We recognize that migrating/rewriting legacy applications can be a significant undertaking. If you are ready to transition to newer versions of .NET or move your solution to the cloud, be sure to review the following highly rated help topics:
- .NET Upgrade Assistant Tool
- Start your cloud journey with Azure App Service
- ASP.NET to ASP.NET Core tutorial playlist on YouTube
- Reliable Web App pattern (RWA) on GitHub (a guidance for building around existing apps without the need for a complete rewrite)