-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathplugin.xml
More file actions
38 lines (30 loc) · 2.12 KB
/
plugin.xml
File metadata and controls
38 lines (30 loc) · 2.12 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
<idea-plugin require-restart="true">
<id>com.jetbrains.rider.plugins.rimworlddev</id>
<name>Rimworld Development Environment</name>
<version>0.0.0</version>
<vendor url="https://github.com/Garethp/Rider-RimworldDevelopment">Garethp</vendor>
<idea-version since-build="253" />
<depends>com.intellij.modules.rider</depends>
<depends>com.intellij.resharper.unity</depends>
<description>
<![CDATA[
<p>Bring the intelligence of your IDE to Rimworld XML files. Use information backed by Rimworlds DLL file to autocomplete
your XML, Ctrl+Click into the C# that your XML gets translated into and see what options you have when adding items
in your mods!</p>
]]>
</description>
<change-notes>Will be auto-generated</change-notes>
<extensions defaultExtensionNs="com.intellij">
<applicationConfigurable groupId="language" instance="RimworldDev.Rider.settings.RimworldSettings" displayName="Rimworld" id="preferences.build.rimworldPlugin" />
<rider.ProjectTypesProvider implementation="RimworldDev.Rider.XmlProject.RimworldProjectType" />
<completion.contributor language="XML" order="first, before xml" implementationClass="com.jetbrains.rider.completion.patchEngine.RiderPatchEngineCompletionContributor" />
<lang.documentationProvider language="XML" implementationClass="com.jetbrains.rider.quickDoc.FrontendDocumentationProvider"/>
<backend.actions.support language="XML" implementationClass="com.jetbrains.rider.actions.RiderActionSupportPolicy" />
<configurationType implementation="RimworldDev.Rider.run.ConfigurationType"/>
<backend.markup.adapterFactory language="XML" implementationClass="com.jetbrains.rider.daemon.RiderCacheAwareMarkupAdapterFactory" />
<spellchecker.bundledDictionaryProvider implementation="RimworldDev.Rider.spellchecker.DictionaryProvider" />
<toolWindow factoryClass="RimworldDev.Rider.remodder.RemodderToolWindowFactory" id="Remodder"/>
<editor.action.execution.policy language="XML" implementationClass="RimworldDev.Rider.XmlEditorActionPolicy" />
<typing.policy language="XML" implementationClass="RimworldDev.Rider.XmlTypingPolicy" />
</extensions>
</idea-plugin>