Luigino De Togni
Luigino De Togni

Reputation: 155

How to prepare UWP package not signed

I have to send to my customer a UWP package not signed, because he will sign it later with his Windows Store Certificate/Account.

I usually make unsigned apk (for Android) and xarchive (for iOS). What is the right way with UWP?

Upvotes: 2

Views: 553

Answers (1)

James Croft
James Croft

Reputation: 1700

It's very similar to your other platforms. As long as your customer knows how to sign the Appx format for UWP, you can build your application and provide them with the built Appx for signing with their cert.

If they're not sure on how to sign it, you can provide them documentation on the SignTool included as part of the Windows SDK (https://msdn.microsoft.com/en-us/library/windows/desktop/jj835835(v=vs.85).aspx)

Upvotes: 1

Related Questions