-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathplugin.xml
More file actions
46 lines (38 loc) · 1.61 KB
/
plugin.xml
File metadata and controls
46 lines (38 loc) · 1.61 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
<idea-plugin version="2">
<id>net.servicestack.ideaplugin</id>
<name>ServiceStackIDEA</name>
<version>1.0</version>
<vendor email="team@servicestack.net" url="https://servicestack.net/">ServiceStack</vendor>
<description><![CDATA[
Enter short description for your plugin here.<br>
<em>most HTML tags may be used</em>
]]></description>
<change-notes><![CDATA[
Add change notes here.<br>
<em>most HTML tags may be used</em>
]]>
</change-notes>
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="131"/>
<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
on how to target different products -->
<!-- uncomment to enable plugin in all products
<depends>com.intellij.modules.lang</depends>
-->
<extensions defaultExtensionNs="com.intellij">
<!-- Add your extensions here -->
</extensions>
<application-components>
<!-- Add your application components here -->
</application-components>
<project-components>
<!-- Add your project components here -->
</project-components>
<actions>
<action id="AddServiceStackReference" class="AddServiceStackReference" text="Add ServiceStack Reference..." icon="/icons/logo-16.png"
description="Adds a ServiceStack reference to the selected module">
<add-to-group group-id="NewGroup" anchor="after" relative-to-action="NewAction"/>
<keyboard-shortcut keymap="$default" first-keystroke="shift ctrl alt R"/>
</action>
</actions>
</idea-plugin>