-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVSCommandTable.vsct
More file actions
45 lines (42 loc) · 1.64 KB
/
VSCommandTable.vsct
File metadata and controls
45 lines (42 loc) · 1.64 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
<?xml version="1.0" encoding="utf-8"?>
<CommandTable xmlns="http://schemas.microsoft.com/VisualStudio/2005-10-18/CommandTable" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<Extern href="stdidcmd.h"/>
<Extern href="vsshlids.h"/>
<Include href="KnownImageIds.vsct"/>
<Include href="VSGlobals.vsct"/>
<Commands package="simplicode">
<Groups>
<Group guid ="simplicode" id="MyMenuGroup" priority="0x0600">
<Parent guid="VSMainMenu" id="Tools"/>
</Group>
</Groups>
<Buttons>
<!-- Open Duplicate Detector 버튼 -->
<Button guid="simplicode" id="OpenToolWindowCommand" priority="0x0100" type="Button">
<Parent guid="simplicode" id="MyMenuGroup"/>
<Icon guid="ImageCatalogGuid" id="StatusInformation"/>
<CommandFlag>IconIsMoniker</CommandFlag>
<Strings>
<ButtonText>Open Duplicate Detector</ButtonText>
<LocCanonicalName>.simplicode.OpenToolWindowCommand</LocCanonicalName>
</Strings>
</Button>
<Button guid="simplicode" id="SemanticAnalysis" priority="0x0101" type="Button">
<Parent guid="simplicode" id="MyMenuGroup"/>
<Icon guid="ImageCatalogGuid" id="StatusInformation"/>
<CommandFlag>IconIsMoniker</CommandFlag>
<Strings>
<ButtonText>Semantic Analysis</ButtonText>
<LocCanonicalName>.simplicode.SemanticAnalysis</LocCanonicalName>
</Strings>
</Button>
</Buttons>
</Commands>
<Symbols>
<GuidSymbol name="simplicode" value="{aa76e3f7-f95c-46ef-bfd7-5c9a8da6a8ac}">
<IDSymbol name="MyMenuGroup" value="0x0001"/>
<IDSymbol name="OpenToolWindowCommand" value="0x0100"/>
<IDSymbol name="SemanticAnalysis" value="0x0101"/>
</GuidSymbol>
</Symbols>
</CommandTable>