-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix duplicate classIDs for different builds (#243)
- Loading branch information
1 parent
80f08ee
commit 7373819
Showing
9 changed files
with
436 additions
and
68 deletions.
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
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
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 |
---|---|---|
@@ -0,0 +1,198 @@ | ||
<?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:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:genTemplate="http://schemas.microsoft.com/appx/developer/templatestudio" xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10" IgnorableNamespaces="uap uap3 rescap genTemplate"> | ||
<Identity Name="Microsoft.Windows.DevHomeAzureExtension.Can" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" Version="0.0.0.0" /> | ||
<Properties> | ||
<DisplayName>Dev Home Azure Extension (Can)</DisplayName> | ||
<PublisherDisplayName>Microsoft Corporation</PublisherDisplayName> | ||
<Logo>Assets\StoreLogo.png</Logo> | ||
</Properties> | ||
<Dependencies> | ||
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.19041.0" MaxVersionTested="10.0.22000.0" /> | ||
</Dependencies> | ||
<Resources> | ||
<Resource Language="x-generate" /> | ||
</Resources> | ||
<Applications> | ||
<Application Id="App" Executable="DevHomeAzureExtension.exe" EntryPoint="$targetentrypoint$"> | ||
<uap:VisualElements DisplayName="ms-resource:AppDisplayNameCanary" Description="ms-resource:AppDescription" AppListEntry="none" BackgroundColor="transparent" Square150x150Logo="Assets\MedTile.png" Square44x44Logo="Assets\AppList.png"> | ||
<uap:DefaultTile Wide310x150Logo="Assets\WideTile.png" /> | ||
<uap:SplashScreen Image="Assets\SplashScreen.png" /> | ||
</uap:VisualElements> | ||
<Extensions> | ||
<com:Extension Category="windows.comServer"> | ||
<com:ComServer> | ||
<com:ExeServer Executable="DevHomeAzureExtension.exe" Arguments="-RegisterProcessAsComServer" DisplayName="Azure Provider Widget"> | ||
<com:Class Id="5C844D91-B497-4D59-AE73-CDC895B1EB2F" DisplayName="Azure Provider Widget" /> | ||
</com:ExeServer> | ||
</com:ComServer> | ||
</com:Extension> | ||
<com:Extension Category="windows.comServer"> | ||
<com:ComServer> | ||
<com:ExeServer Executable="DevHomeAzureExtension.exe" Arguments="-RegisterProcessAsComServer" DisplayName="Azure Extension Provider"> | ||
<com:Class Id="0F3605DE-92CF-4FE0-9BCD-A3519EA67D1B" DisplayName="Azure Extension Provider" /> | ||
</com:ExeServer> | ||
</com:ComServer> | ||
</com:Extension> | ||
<uap3:Extension Category="windows.appExtension"> | ||
<uap3:AppExtension Name="com.microsoft.devhome" Id="PG-SP-ID" PublicFolder="Public" DisplayName="ms-resource:AppDisplayNameCanary" Description="ms-resource:AppDescription"> | ||
<uap3:Properties> | ||
<DevHomeProvider> | ||
<Activation> | ||
<CreateInstance ClassId="0F3605DE-92CF-4FE0-9BCD-A3519EA67D1B" /> | ||
</Activation> | ||
<SupportedInterfaces> | ||
<DeveloperId /> | ||
<Repository /> | ||
<ComputeSystem /> | ||
<QuickStartProject /> | ||
<Settings /> | ||
</SupportedInterfaces> | ||
</DevHomeProvider> | ||
</uap3:Properties> | ||
</uap3:AppExtension> | ||
</uap3:Extension> | ||
<desktop:Extension Category="windows.toastNotificationActivation"> | ||
<desktop:ToastNotificationActivation ToastActivatorCLSID="9DC0FB0C-D352-4195-8BFC-A82494C5977F" /> | ||
</desktop:Extension> | ||
<com:Extension Category="windows.comServer"> | ||
<com:ComServer> | ||
<com:ExeServer Executable="DevHomeAzureExtension.exe" Arguments="----AppNotificationActivated:" DisplayName="DevHome Azure Extension Toast Activator"> | ||
<com:Class Id="9DC0FB0C-D352-4195-8BFC-A82494C5977F" DisplayName="DevHome Azure Extension Toast Activator" /> | ||
</com:ExeServer> | ||
</com:ComServer> | ||
</com:Extension> | ||
<uap3:Extension Category="windows.appExtension"> | ||
<uap3:AppExtension Name="com.microsoft.windows.widgets" DisplayName="ms-resource:WidgetProviderDisplayNameCanary" Id="01" PublicFolder="Public"> | ||
<uap3:Properties> | ||
<WidgetProvider> | ||
<ProviderIcons> | ||
<Icon Path="Assets\StoreLogo.scale-100.png" /> | ||
</ProviderIcons> | ||
<Activation> | ||
<!-- Apps exports COM interface which implements IWidgetProvider --> | ||
<CreateInstance ClassId="5C844D91-B497-4D59-AE73-CDC895B1EB2F" /> | ||
</Activation> | ||
<Definitions> | ||
<Definition Id="Azure_QueryList" DisplayName="Query Result" Description="Azure Query List Widget" IsCustomizable="true"> | ||
<Capabilities> | ||
<Capability> | ||
<Size Name="small" /> | ||
</Capability> | ||
<Capability> | ||
<Size Name="medium" /> | ||
</Capability> | ||
<Capability> | ||
<Size Name="large" /> | ||
</Capability> | ||
</Capabilities> | ||
<ThemeResources> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\QueryResultScreenshotLight.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
<DarkMode> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\QueryResultScreenshotDark.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
</DarkMode> | ||
<LightMode> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\QueryResultScreenshotLight.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
</LightMode> | ||
</ThemeResources> | ||
</Definition> | ||
<Definition Id="Azure_QueryTiles" DisplayName="Query Tiles" Description="Azure DevOps Query Tiles Widget" IsCustomizable="true"> | ||
<Capabilities> | ||
<Capability> | ||
<Size Name="small" /> | ||
</Capability> | ||
<Capability> | ||
<Size Name="medium" /> | ||
</Capability> | ||
<Capability> | ||
<Size Name="large" /> | ||
</Capability> | ||
</Capabilities> | ||
<ThemeResources> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\QueryTilesScreenshotLight.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
<DarkMode> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\QueryTilesScreenshotDark.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
</DarkMode> | ||
<LightMode> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\QueryTilesScreenshotLight.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
</LightMode> | ||
</ThemeResources> | ||
</Definition> | ||
<Definition Id="Azure_PullRequests" DisplayName="Pull Requests" Description="Azure DevOps Pull Requests Widget" IsCustomizable="true"> | ||
<Capabilities> | ||
<Capability> | ||
<Size Name="small" /> | ||
</Capability> | ||
<Capability> | ||
<Size Name="medium" /> | ||
</Capability> | ||
<Capability> | ||
<Size Name="large" /> | ||
</Capability> | ||
</Capabilities> | ||
<ThemeResources> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\PullRequestsScreenshotLight.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
<DarkMode> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\PullRequestsScreenshotDark.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
</DarkMode> | ||
<LightMode> | ||
<Icons> | ||
<Icon Path="Widgets\Assets\azureIcon.png" /> | ||
</Icons> | ||
<Screenshots> | ||
<Screenshot Path="Widgets\Assets\PullRequestsScreenshotLight.png" DisplayAltText="Dev Home icon" /> | ||
</Screenshots> | ||
</LightMode> | ||
</ThemeResources> | ||
</Definition> | ||
</Definitions> | ||
</WidgetProvider> | ||
</uap3:Properties> | ||
</uap3:AppExtension> | ||
</uap3:Extension> | ||
</Extensions> | ||
</Application> | ||
</Applications> | ||
<Capabilities> | ||
<rescap:Capability Name="runFullTrust" /> | ||
</Capabilities> | ||
</Package> |
Oops, something went wrong.