appx

Can an APPX Windows Store Package contain multiple “applications”?

这一生的挚爱 提交于 2019-12-20 04:06:30
问题 I'm trying to understand the appxmanifest file for APPX packages better. I noticed it has an <Applications> tag followed by a single <Application> tag for every example I've seen. It would appear though that multiple "applications" can be included in the Manifest. What would this actually even mean though? Is this actually possible or was Microsoft just thinking about forward compatibility when designing the AppxManifest schema? 回答1: The manifest does define this as a possibility, and with

Invalid package family name error on Windows PhoneGap app

守給你的承諾、 提交于 2019-12-12 04:39:04
问题 I have done a windows app using phoneGap, But when I upload the APPX file in windows dev center, I got some errors like 'Invalid package family name'. 回答1: I worked through a similar problem today and I found this article helpful: http://cordova.apache.org/docs/en/latest/guide/platforms/win8/index.html Check your build configuration file (build.json) and make sure you select a release if your release settings are defined to match the Strong Name with the Windows Store expected Publisher Name.

Windows UWP - Modify AppX Package At Runtime

旧城冷巷雨未停 提交于 2019-12-11 06:32:21
问题 We need to dynamically load assemblies at runtime in order to include customization for our users. However, after looking all over the web, I cannot find any information on whether Microsoft plan to make this feature possible or not. I have started a feature request here: https://wpdev.uservoice.com/forums/110705-universal-windows-platform/suggestions/18145291-dynamically-load-assembly Failing that, I figured that it may be possible to manually add assemblies in to the AppX package, and then

How to install Windows Phone 8.1 app in other phones in the simplest way?

允我心安 提交于 2019-12-11 03:15:15
问题 I have developed a Windows phone 8.1 app. Now I want to distribute it to others. I have done Create App Packages in Visual Studio, and it passed all the certification tests. So I have the .appx file, but I am not able to install it in other Windows phones. Its showing this error: Can't install this company app: There is a problem with this company app. Contact your company's support person for help. I have googled and found out that there is two ways of distributing the app: 1) Mobile Device

How to add Microsoft.NET.CoreRuntime.2.1 for UWP package installer?

寵の児 提交于 2019-12-11 01:32:19
问题 I have Xamarin Application. I can build ipa, APK and UWP(.appx) package. ipa and APK is working fine. I am facing issue while installing UWP. Issue with UWP: It is asking to install Microsoft.NET.CoreRuntime.2.1 as it is one of the dependencies. Do I need to add Microsoft.NET.CoreRuntime.2.1 in project? If so, where? Can anybody please suggest? I gave created package with following steps 1: Right click UWP project-> Store-> Select create app packages 2: Now in debug mode we don't need to

Fixing scaled images in AppX manifest generated by Destop App Converter

烈酒焚心 提交于 2019-12-10 17:17:42
问题 I have used the Desktop App Converter to convert my Win32 application to .appx . The converter failed to convert application icons correctly. Icon transparency was lost. While I have reported this (bug?) to Microsoft, meanwhile I'd like to try to convert the icons manually. And I want to generate the .appx manually (using the makeappx ) in the end anyway. So I need to create the AppxManifest.xml . Problem is that the AppxManifest.xml generated by the Desktop App Converter is not valid. All

Can msbuild create an .appxbundle for multiple platforms?

夙愿已清 提交于 2019-12-10 16:48:34
问题 I'm trying to build an .appxbundle for my Windows 10 UWP Store app using msbuild that contains x86, x64, and ARM platforms. I can do this from VS2015 RTM using the Create App Pacakges wizard, but I get errors when I use msbuild. Any idea what I'm doing wrong? My command line: msbuild HelloWorld.csproj /p:Configuration=Release;AppxBundle=Always Errors I'm getting: "E:\TestApps\HelloWorld.csproj" (default target) (1) -> (_CreateBundle target) -> C:\Program Files (x86)\MSBuild\Microsoft

Stuck with dependencies in an AppX from Desktop App Converter

自作多情 提交于 2019-12-10 11:37:53
问题 I have finally succeeded converting my desktop app to AppX with Desktop App Converter, and to sign it with the insight from Franklin Chen. Step by step, I am getting closer to completion. But I am now bumping into a new hurdle (hopefully the last). I tried to follow the advice at https://blogs.msdn.microsoft.com/vcblog/2016/07/07/using-visual-c-runtime-in-centennial-project/ I did install on my machine vc_uwpdesktop.110.exe, vc_uwpdesktop.120.exe and vc_uwpdesktop.140.exe. But still not joy.

How to silent install an UWP appx?

这一生的挚爱 提交于 2019-12-10 05:23:50
问题 I develop an UWP appx, It could be installed in a cmd.exe prompt: C:\test>myapp.appx but a windows GUI pop up during installtion. Is there any method to install it with a Silent parameter like as: C:\test>myapp.appx /silent (or /s) in order to inhibit the GUI from pop up ? Thanks! 回答1: Microsoft provides powershell cmdlets for controlling AppX and MSIX packages. The command you need is Add-AppxPackage. PS C:\> Add-AppxPackage -Path C:\Users\user1\Desktop\MyApp.appx 来源: https://stackoverflow

Why Microsoft.NET.CoreRuntime.1.1.appx is coming in dependency - UWP APPX

眉间皱痕 提交于 2019-12-08 00:03:29
问题 When I was used to create appx file (x64 release mode) of my project , there was only Microsoft.VCLibs.x64.14.00.appx file was created under dependency folder. But now when I'm trying to create appx, an additional file "Microsoft.NET.CoreRuntime.1.1.appx" is also creating under dependency folder. What is the reason for it? And How can I remove it? Now when clients run my appx (using AppInstaller) , it shows "App installer failed to install package dependencies. Ask the developer for Microsoft