You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
Required fields*
- Please clarify your specific problem or provide additional details to highlight exactly what you need. As it's currently written, it's hard to tell exactly what you're asking.Community– Community Bot2024-07-22 12:41:49 +00:00Commented Jul 22, 2024 at 12:41
- UWP plays in a sandbox; I can't see why a UWP class library (which I use) wouldn't either. I use ".NET Standard" libraries to share code between Console, WPF and UWP; which wouldn't include UI elements.Gerry Schmitz– Gerry Schmitz2024-07-23 20:54:15 +00:00Commented Jul 23, 2024 at 20:54
- So, the reason why I was getting the EEFileLoadException was that I did not properly export the class library as the dll was on debug mode. Fixed that issue, but now I'm getting an HRException, not sure what that means and I'm currently in the middle of figuring it out, but if you've faced the same issue by any chance, please point me in the right direction. Also, @GerrySchmitz, have you made a 'self contained deployment' for the uwp library? I don't want the user to have to install .netcore on their system, and I want all the necessary .netcore dlls packaged with my output executable.Muhammad Murtaza– Muhammad Murtaza2024-07-24 06:26:44 +00:00Commented Jul 24, 2024 at 6:26
- My apps are deployed via MS Store; and I have no issue bundling UWP exe, UWP dll, and Standard dll. (I can't picture a case where I only give someone a "library") BTW, you can call into an EXE just as you can call into a dll; but all still have to be compatible. I can also deply my apps to my own remote devices via VS. The Windows Certification tests tell you when you're good to go. I hear "foreign" (i.e. "3rd party") dll's are an issue when it comes to certification.Gerry Schmitz– Gerry Schmitz2024-07-24 17:03:29 +00:00Commented Jul 24, 2024 at 17:03
Add a comment |
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. python-3.x), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you
lang-cpp