-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Generate the Windows manifests as well #2704
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
c615baa
Generate the Windows manifests as well
mattleibow 390b339
Make a new @(MauiAppIcon)
mattleibow d6ad433
comment
mattleibow 57cded8
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 244240f
MauiAppIcon -> MauiIcon
mattleibow 03effc8
zuuup
mattleibow 63c5cd2
Use targets instead
mattleibow bae7d6b
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 8434788
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow a571c72
Fix the tests
mattleibow 8704176
extract
mattleibow 120f887
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow bf3ec44
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 16af9e3
better errors
mattleibow 4af2100
Update the templates
mattleibow 861ad3e
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 395dcaa
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 626c544
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 43a5c60
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 15ea937
Merge remote-tracking branch 'origin/main' into dev/win-manifest
mattleibow 96ff11f
make sure to really build windows
mattleibow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
52 changes: 10 additions & 42 deletions
52
src/Controls/samples/Controls.Sample.SingleProject/Platforms/Windows/Package.appxmanifest
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<Package | ||
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" | ||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" | ||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" | ||
IgnorableNamespaces="uap rescap"> | ||
|
||
<Identity | ||
Name="f9e4fa3e-3505-4742-9b2b-d1acdaff4ec8" | ||
Publisher="CN=.NET Foundation" | ||
Version="1.0.0.0" /> | ||
|
||
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" | ||
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" | ||
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" | ||
IgnorableNamespaces="uap rescap"> | ||
<Identity Publisher="CN=.NET Foundation" /> | ||
<Properties> | ||
<DisplayName>.NET MAUI Controls</DisplayName> | ||
<PublisherDisplayName>.NET Foundation</PublisherDisplayName> | ||
<Logo>appiconStoreLogo.png</Logo> | ||
</Properties> | ||
|
||
<Dependencies> | ||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> | ||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" /> | ||
</Dependencies> | ||
|
||
<Resources> | ||
<Resource Language="x-generate"/> | ||
<Resource Language="x-generate" /> | ||
</Resources> | ||
|
||
<Applications> | ||
<Application Id="App" | ||
Executable="$targetnametoken$.exe" | ||
EntryPoint="$targetentrypoint$"> | ||
<uap:VisualElements | ||
DisplayName=".NET MAUI Controls" | ||
Description=".NET MAUI Controls sample application" | ||
BackgroundColor="transparent" | ||
Square150x150Logo="appiconMediumTile.png" | ||
Square44x44Logo="appiconLogo.png"> | ||
<uap:DefaultTile | ||
Wide310x150Logo="appiconWideTile.png" | ||
Square71x71Logo="appiconSmallTile.png" | ||
Square310x310Logo="appiconLargeTile.png" | ||
ShortName="Single Project"> | ||
<uap:ShowNameOnTiles> | ||
<uap:ShowOn Tile="square150x150Logo"/> | ||
<uap:ShowOn Tile="wide310x150Logo"/> | ||
</uap:ShowNameOnTiles> | ||
</uap:DefaultTile > | ||
<uap:SplashScreen Image="dotnet_botSplashScreen.png" /> | ||
</uap:VisualElements> | ||
<Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="$targetentrypoint$"> | ||
<uap:VisualElements /> | ||
</Application> | ||
</Applications> | ||
|
||
<Capabilities> | ||
<rescap:Capability Name="runFullTrust" /> | ||
<DeviceCapability Name="location"/> | ||
<DeviceCapability Name="location" /> | ||
</Capabilities> | ||
</Package> | ||
</Package> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Windows uses a GUID for this, so we unfortunately need to condition. Maybe we can have an
$(ApplicationGuid)
? Then we don't need this and we can potentially use that GUID in other OS. Not sure what Tizen uses? @rookiejava