21 lines
727 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"/>
<!-- Product and plugin compatibility requirements -->
<depends>com.intellij.modules.platform</depends>
<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>