-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
Convert from optional package to app extension for source data #92
Changes from all commits
a542226
22cf41e
d34d6c2
25885c0
251d4f1
3ae9f51
3d2ec3a
de0718e
77c8c38
4a8006b
6c02ce1
6316164
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,19 +9,33 @@ | |
Version="1.0.0.0" /> | ||
|
||
<Properties> | ||
<DisplayName>AppInstallerSQLiteIndex for AppInstallerCLI.</DisplayName> | ||
<DisplayName>Microsoft WinGet Source</DisplayName> | ||
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName> | ||
<Logo>Assets\AppPackageStoreLogo.png</Logo> | ||
</Properties> | ||
|
||
<Dependencies> | ||
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.16299.0" MaxVersionTested="10.0.18287.0" /> | ||
<uap4:MainPackageDependency Name="Microsoft.DesktopAppInstaller" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/> | ||
<uap4:MainPackageDependency Name="AppInstallerCLI" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US"/> | ||
</Dependencies> | ||
|
||
<Applications> | ||
<Application Id="SourceData"> | ||
<uap:VisualElements DisplayName="Source data for Microsoft WinGet" Square150x150Logo="Assets\AppPackageStoreLogo.scale-150.png" Square44x44Logo="Assets\AppPackageStoreLogo.scale-100.png" Description="Source data for Microsoft WinGet." BackgroundColor="#0078d7" AppListEntry="none" /> | ||
<Extensions> | ||
<uap3:Extension Category="windows.appExtension"> | ||
<uap3:AppExtension Name="com.microsoft.winget.source" | ||
Id="IndexDB" | ||
DisplayName="Source data for Microsoft WinGet" | ||
Description="Source data for Microsoft WinGet" | ||
PublicFolder="Public"> | ||
</uap3:AppExtension> | ||
</uap3:Extension> | ||
</Extensions> | ||
</Application> | ||
</Applications> | ||
|
||
<Resources> | ||
<Resource Language="en-US" /> | ||
<Resource Language="und" /> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Is this intended? #ByDesign There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, it is language independent, which is what und is for. In reply to: 417656686 [](ancestors = 417656686) |
||
</Resources> | ||
|
||
</Package> |
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 this is going to change. By the way, how did you sign the package? #ByDesign
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.
Why would it change? This is the same package (I just renamed it).
In reply to: 417662780 [](ancestors = 417662780)
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.
Somehow it shows edit, rename for me ...
In reply to: 417665017 [](ancestors = 417665017,417662780)