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
|
<Addin id="Platform.Windows" namespace="Do" version="1.0" category="Hidden">
<Runtime>
<Import assembly="Do.Platform.dll" />
<Import assembly="Do.Platform.Windows.dll" />
</Runtime>
<Dependencies>
<Addin id="Platform" version="1.0" />
<Addin id="Universe" version="1.0" />
</Dependencies>
<!-- Extensions included in this assembly -->
<!-- Item Sources -->
<Extension path="/Do/ItemSource">
<ItemSource type="Do.Universe.Windows.ApplicationItemSource" />
</Extension>
<!-- Actions -->
<Extension path="/Do/Action">
<Action type="Do.Universe.Windows.CopyToClipboardAction" />
</Extension>
<Extension path="/Do/Service">
<Service type="Do.Platform.Windows.NotificationService" />
<Service type="Do.Platform.Windows.WindowsPathsService" />
<Service type="Do.Platform.Windows.SystemService" />
<Service type="Do.Platform.Windows.NetworkService" />
<Service type="Do.Platform.Windows.TrayIconService" />
<Service type="Do.Platform.Windows.EnvironmentService" />
<Service type="Do.Platform.Windows.UniverseFactoryService" />
<Service type="Do.Platform.Windows.RegistryPreferencesService" />
</Extension>
</Addin>
|