NickeManarin / ScreenToGif

🎬 ScreenToGif allows you to record a selected area of your screen, edit and save it as a gif or video.
http://www.screentogif.com
Microsoft Public License
23.04k stars 2.15k forks source link

.NET 8.0 has Windows Arm64 Installer #1259

Open iKineticate opened 6 months ago

iKineticate commented 6 months ago

Describe the bug Windows on arm must install .NET 8.0(x64)

Expected behavior .NET 8.0 has Windows Arm64 Installer

Desktop (please complete the following information):

NickeManarin commented 6 months ago

The installer calls this WinAPI method to get the OS architecture:

    [DllImport("kernel32.dll", SetLastError = true)]
    private static extern bool IsWow64Process2(IntPtr process, out ushort processMachine, out ushort nativeMachine);

I don't have access to a Arm64 machine right now to be able to test it properly.