I'm currently part of a small team working on a project for HoloLens. We're facing a problem when deploying on an unit: My team-mate can deploy from his computer and run the program, but when I do it from mine, on the same unit, it refuses to launch and throws a BadImageFormatException.
If I deploy the same program, from my computer, but on another HoloLens it works flawlessly.
The emulator works too, but there are too many limitations for what we intend to do.
Has any other team encountered the same problem when deploying the same program from two different computers to a single HoloLens ?
edit
Sorry I wasn't specific enough: The program is built with Unity, then deployed through Visual Studio.
The message sent with the exception is about the application not being a valid x86 app. (I'll copy-paste the exception tomorrow)
Of course the application is valid, as I said before: I can deploy it without any problem on another device.
The exception is thrown from the constructor of the App class, before the application starts properly (the "Made with Unity" splashscreen doesn't show up):
public App()
{
SetupOrientation();
m_AppCallbacks = new AppCallbacks(); // <-- Exception is thrown from this point.
// Allow clients of this class to append their own callbacks.
AddAppCallbacks(m_AppCallbacks);
}