-
Notifications
You must be signed in to change notification settings - Fork 431
Expand file tree
/
Copy pathsingleton.appxfragment
More file actions
52 lines (52 loc) · 3.06 KB
/
singleton.appxfragment
File metadata and controls
52 lines (52 loc) · 3.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<Fragment
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:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5"
xmlns:com="http://schemas.microsoft.com/appx/manifest/com/windows10"
IgnorableNamespaces="uap uap3 uap5 com">
<Applications>
<Application Id="PushNotifications.LongRunningTask"
Executable="PushNotificationsLongRunningTask.exe"
EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements
DisplayName="Microsoft Windows App Runtime Singleton"
Square150x150Logo="WindowsAppRuntime.png"
Square44x44Logo="WindowsAppRuntime.png"
Description="Microsoft Windows App Runtime Singleton package"
BackgroundColor="transparent"
AppListEntry="none">
<uap:DefaultTile Wide310x150Logo="WindowsAppRuntime.png"/>
<uap:SplashScreen Image="WindowsAppRuntime.png" uap5:Optional="true"/>
</uap:VisualElements>
<Extensions>
<com:Extension Category="windows.comServer">
<com:ComServer>
<com:ExeServer Executable="PushNotificationsLongRunningTask.exe" DisplayName="Microsoft Windows App Runtime Push Notifications Task">
<com:Class Id="E739C755-0D09-48DF-A468-A5DF0B5422DC" DisplayName="Microsoft Windows App Runtime Push Notifications Task"/>
</com:ExeServer>
</com:ComServer>
</com:Extension>
<com:Extension Category="windows.comInterface">
<com:ComInterface>
<com:ProxyStub Id="60FC21B2-B396-4D49-94F0-7555869FB93C" DisplayName="PushNotificationsLongRunningTask ProxyStub" Path="PushNotificationsLongRunningTask.ProxyStub.dll"/>
<com:Interface Id="60FC21B2-B396-4D49-94F0-7555869FB93C" ProxyStubClsid="60FC21B2-B396-4D49-94F0-7555869FB93C"/> <!-- IID_IWpnLrpPlatform -->
</com:ComInterface>
</com:Extension>
<com:Extension Category="windows.comInterface">
<com:ComInterface>
<com:ProxyStub Id="25604D55-9B17-426F-9D67-2B11B3A65598" DisplayName="PushNotificationsLongRunningTask ProxyStub" Path="PushNotificationsLongRunningTask.ProxyStub.dll"/>
<com:Interface Id="25604D55-9B17-426F-9D67-2B11B3A65598" ProxyStubClsid="25604D55-9B17-426F-9D67-2B11B3A65598"/> <!-- IID_IWpnForegroundSink -->
</com:ComInterface>
</com:Extension>
<com:Extension Category="windows.comInterface">
<com:ComInterface>
<com:ProxyStub Id="559B4205-F810-4947-B02B-3EA9A311C6AD" DisplayName="PushNotificationsLongRunningTask ProxyStub" Path="PushNotificationsLongRunningTask.ProxyStub.dll"/>
<com:Interface Id="559B4205-F810-4947-B02B-3EA9A311C6AD" ProxyStubClsid="559B4205-F810-4947-B02B-3EA9A311C6AD"/> <!-- IID_IWpnForegroundSink2 -->
</com:ComInterface>
</com:Extension>
</Extensions>
</Application>
</Applications>
</Fragment>