mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-28 01:07:49 +08:00
18 lines
618 B
XML
18 lines
618 B
XML
<idea-plugin>
|
|
<name>Maximum Open Projects</name>
|
|
<description>Shows warning dialog when the maximum allowed number of open projects is exceeded</description>
|
|
<version>1.0</version>
|
|
<vendor>JetBrains</vendor>
|
|
<idea-version since-build="131"/>
|
|
|
|
<project-components>
|
|
<component>
|
|
<implementation-class>MyPackage.MaxProject</implementation-class>
|
|
</component>
|
|
</project-components>
|
|
|
|
<extensions defaultExtensionNs="com.intellij">
|
|
<applicationService serviceInterface="MyPackage.MyCounter"
|
|
serviceImplementation="MyPackage.MyCounter"/>
|
|
</extensions>
|
|
</idea-plugin> |