forked from episerver/EPiServer.Forms.Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule.config
32 lines (26 loc) · 971 Bytes
/
module.config
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
<?xml version="1.0" encoding="utf-8" ?>
<module loadFromBin="false"
type="EPiServer.Forms.Samples.FormsSamplesModule, EPiServer.Forms.Samples"
clientResourceRelativePath="{VersionString}">
<assemblies>
<add assembly="EPiServer.Forms.Samples" />
</assemblies>
<routes>
</routes>
<clientResources>
<add name="FormsSamples" path="ClientResources/epi-formssamples/themes/sleek/FormsSamples.css" resourceType="Style" />
</clientResources>
<dojo>
<packages>
<add name="epi-formssamples" location="ClientResources/epi-formssamples" />
</packages>
</dojo>
<clientModule initializer="epi-formssamples.FormsSamplesModule">
<moduleDependencies>
<add dependency="EPiServer.Forms.UI" type="RunAfter" />
</moduleDependencies>
<requiredResources>
<add name="FormsSamples" />
</requiredResources>
</clientModule>
</module>