Reputation:
I have some issues with Sq lite. I read a Microsoft article
In that site it is mentioning as "When you create a new C# or VB Windows Store project in Visual Studio, it supports all architectures (x86, x64 and ARM) by default. But since you added Sq Lite to the project, you can’t build one package that targets all architectures. You have to build one target for each. Select Build|Configuration Manager and select x86, x64 or ARM from the Platform drop-down list."
My application is Newspaper app developed using C# for windows tablet. Can i build for all processors.?
Upvotes: 1
Views: 326
Reputation: 1784
Yes you can, the only downside is that you must compile three different times your app, to support the ARM, X86 and X&4 architectures.
This can done easily if you configure your configuration manager with the different architectures ;)
Check this link on How to: Create and Edit Configurations
Upvotes: 1