Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Should I deploy a neutral app bundle or x86, x64, ARM separately?

When creating a release build for Windows 8 app, should I use a neutral appx?

enter image description here

Or should I use an app bundle with x86, x64, and ARM separately?

enter image description here

What exactly is the difference? Pros/Cons?

like image 644
Laith Avatar asked Dec 12 '25 02:12

Laith


1 Answers

If your app is using any c++ dlls for example SQLite you need to deploy each version separately. Otherwise you can release anycpu version. Note in UWP app (win 10) there is no longer an any cpu option.

like image 114
Ken Tucker Avatar answered Dec 14 '25 19:12

Ken Tucker