-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.xml
38 lines (37 loc) · 1.19 KB
/
plugin.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="uece.ees"
point="org.eclipse.ui.newWizards">
<category
id="UefiIde.category.wizards"
name="Uefi EDK2 Tools">
</category>
<wizard
category="UefiIde.category.wizards"
class="org.uefiide.wizards.ExistingModuleProjectWizard"
finalPerspective="org.eclipse.cdt.ui.CPerspective"
id="UefIde.wizards.new.module"
name="Existing EDK2 Module Wizard"
project="true">
</wizard>
<wizard
category="UefiIde.category.wizards"
class="org.uefiide.wizards.NewEdk2ModuleProjectWizard"
finalPerspective="org.eclipse.cdt.ui.CPerspective"
id="UefIde.wizards.new.empty_module"
name="New EDK2 Module Wizard"
project="true">
</wizard>
</extension>
<extension
point="org.eclipse.ui.startup">
<startup
class="org.uefiide.startup.SetResourceChangeListenerStartup">
</startup>
<startup
class="org.uefiide.startup.SetDefaultEditorsStartup">
</startup>
</extension>
</plugin>