Skip to main content
All docs
V25.1
  • ARM Support

    You can build applications with DevExpress WPF components for ARM64 devices.

    Requirements

    Install the Arm64 software development kit (SDK) for .NET 8 (or higher) on an ARM64 device to build and run WPF applications.

    Configure the Project

    Right-click the project in the Solution Explorer and select Edit Project File.

    Specify the RuntimeIdentifiers element in the PropertyGroup:

    <PropertyGroup>
        <OutputType>WinExe</OutputType>
        <TargetFramework>net8.0-windows</TargetFramework>
        <UseWPF>true</UseWPF>
        <RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
    </PropertyGroup>
    

    Build the application.

    Note

    You may encounter the following error when attempting to launch your application in the ARM64 environment with the attached Visual Studio debugger:

    Unable to attach CoreCLR

    This error does not prevent you from building your application and running the executable.