DesktopBridge | Desktop Bridge samples | Dektop Application library
kandi X-RAY | DesktopBridge Summary
kandi X-RAY | DesktopBridge Summary
Desktop Bridge (aka Project Centennial) samples
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of DesktopBridge
DesktopBridge Key Features
DesktopBridge Examples and Code Snippets
Community Discussions
Trending Discussions on DesktopBridge
QUESTION
I have created a .NET Core Winforms app (using C#) that I want to submit to the Windows app Store. Following what it says here, I added a Windows Application Packaging Project to my solution:
I tried creating the Package, but it failed with this err msg:
Severity Code Description Project File Line Suppression State Error There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference "C:\Users\bclay\source\repos\F4F_Core\F4F_Core\bin\x86\Release\netcoreapp3.1\win-x86\F4F_Core.dll", "x86". This mismatch may cause runtime failures. Please consider changing the targeted processor architecture of your project through the Configuration Manager so as to align the processor architectures between your project and references, or take a dependency on references with a processor architecture that matches the targeted processor architecture of your project. WapProjTemplate1 C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\MSBuild\Current\Bin\Microsoft.Common.CurrentVersion.targets 2124
So it says to "consider changing the targeted processor architecture of your project through the Configuration Manager"
This is what Configuration Manager shows:
It allows me to add a New or Edit the existing:
...but I don't know what I should try to add or change here.
The parts of the WapProjTemplate1.wapproj file that may be relevant are:
...ANSWER
Answered 2020-Nov-16 at 01:28During the testing with blank project, I could reproduce this issue, and we suggest you send feedback with Visual Studio for this issue. And currently we have a workaround that edit the Winform platform target as x86 (not Platform dropdown), publish application package template as x86 release package.
Update
Right click winform project-> Properties-> build- >Platform.
Right the package template project -> Publish -> Create app packages-> Sideloading-> Skip package signing
Only check x86 Architecture.
QUESTION
I have a Windows Store Desktop App with which I try to write to the registry with the following pattern in order to have my app start automatically whenever the user logs in:
...ANSWER
Answered 2019-Jan-10 at 16:39This is by design for packaged applications. The write operation does not go to the global registry, but to local one that is specific to the app and the user.
If you do a read operation after you written to your registry you will get the correct value, but other apps/process in the system won't see your changes to the registry.
The details of this are documented here: https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-behind-the-scenes#registry
QUESTION
To get an application written in Delphi to the Windows Store, I have to disable internal update mechanisms. For example things like "Check for updates" and such things are forbidden via Store policies 10.2.5
So, I found the C# helper function IsRunningAsUwp()
in the DesktopBridgeHelpers project code. My plan is to convert that helper to Delphi code, but the packageFullName
string is always empty here, even if I run the app through a DesktopBridge converted project:
ANSWER
Answered 2018-Feb-01 at 19:22The function import is incorrect. It should be
QUESTION
We are currently in the process of converting our application to UWP (Via DesktopBridge) and have so far had no issues, however we support custom executables that users can create to extend the functionality. These download ok from within the application, but when we attempt to execute them we get an LP5 error.
Because of the nature of these files we cannot add them to the appxmanifest or download them as ExtensionPacks from the AppStore.
Is there a workaround for this that we can use? or has anyone found a solution that could come in handy
As usual any help is greatly appreciated. Thanks
...ANSWER
Answered 2018-Jun-24 at 15:45When your app writes files (content or executables) to the AppData folder, those writes will be redirected to a per-app/per-user location under %userprofile\AppData\Local\Packages{PackageFamilyName}. This is documented here:
https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-behind-the-scenes
You have a couple of option to accomplish this scenario in your app:
1) ShellExecute your files from the redirected location
2) Use the modern ApplicationData API for both read and write and you won't need to know about the actual location: https://docs.microsoft.com/en-us/uwp/api/Windows.Storage.ApplicationData
3) Use a different location that is not redirected, such as %temp%
One general note on your scenario: executing dynamically downloaded binaries is not supported on devices in Win10S Mode. Only store-signed code can be executed on those.
QUESTION
I have an ATL C++ project I want to add to the windows store. I followed the instructions here: https://docs.microsoft.com/en-us/windows/uwp/porting/desktop-to-uwp-packaging-dot-net But when I go to build my appx package by right clicking on the project, I get an error:
1>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\MSBuild\Microsoft\DesktopBridge\Microsoft.DesktopBridge.targets(179,5): error MSB4044: The "GenerateDesktopBridgeAppxManifest" task was not given a value for the required parameter "EntryPointExe".
I added a reference to my project as in the application section, and set it as the entrypoint. However, the tick box doesn't seem to stay applied, even though the project name shows up in bold below Applications.
Inside the Package.appxmanifest this is under applications:
...ANSWER
Answered 2018-Jan-28 at 19:43It appears my problem was caused by a different name being used for the output of the project.
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install DesktopBridge
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page