-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add WinRT.StubExe project and .targets to support WinRT activation for apps #1640
Conversation
<SubSystem>Windows</SubSystem> | ||
<EnableCOMDATFolding>true</EnableCOMDATFolding> | ||
<OptimizeReferences>true</OptimizeReferences> | ||
<GenerateDebugInformation>true</GenerateDebugInformation> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think you will need to enable a more options here to pass https://github.com/microsoft/binskim
e3cc8f3
to
1391296
Compare
Spoke at length with @MichalStrehovsky, @jkoritzinsky and @AaronRobinsonMSFT, and I think the conclusion is that the simplest/best way to do this is to port over some code from DNNE and have a custom MSBuild task just invoke |
Depends on: dotnet/runtime#103504
This PR includes two changes:
Main
from applications, which will leverage the newCustomNativeMain
functionality from .NET 9 (see related PR there). This enables apps to both be executed normally, as well as act as implementation .dll for WinRT components (eg. for OOP background tasks).Note
Opening as a draft as things are still very much up in the air at this point.