forked from udaychy/Dnn.AuthServices.Jwt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDnn.Jwt.dnn
72 lines (72 loc) · 2.65 KB
/
Dnn.Jwt.dnn
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="DNNJWT" type="Provider" version="01.00.01">
<friendlyName>DNN JWT Auth Handler</friendlyName>
<description>DNN Json Web Token Authentication (JWT) library for cookie-less Mobile authentication clients</description>
<dependencies/>
<owner>
<name>DNN</name>
<organization>DNN Corp.</organization>
<url>http://www.dnnsoftware.com</url>
<email>[email protected]</email>
</owner>
<license src="license.txt" />
<releaseNotes src="releaseNotes.txt" />
<azureCompatible>true</azureCompatible>
<dependencies>
<dependency type="CoreVersion">08.00.00</dependency>
</dependencies>
<components>
<component type="Assembly">
<assemblies>
<assembly>
<path>bin</path>
<name>Dnn.AuthServices.Jwt.dll</name>
</assembly>
<assembly>
<path>bin</path>
<name>System.IdentityModel.Tokens.Jwt.dll</name>
</assembly>
</assemblies>
</component>
<component type="Script">
<scripts>
<basePath>DesktopModules\AuthenticationServices\JWTAuth</basePath>
<script type="Install">
<path>Data\Scripts</path>
<name>01.00.00.SqlDataProvider</name>
<version>01.00.00</version>
</script>
<script type="UnInstall">
<path>Data\Scripts</path>
<name>Uninstall.SqlDataProvider</name>
<version>01.00.00</version>
</script>
</scripts>
</component>
<component type="Config">
<config>
<configFile>web.config</configFile>
<install>
<configuration>
<nodes>
<node path="/configuration/dotnetnuke/authServices/messageHandlers" action="update" key="name" collision="overwrite">
<add name="JWTAuth" type="Dnn.AuthServices.Jwt.Auth.JwtAuthMessageHandler, Dnn.AuthServices.Jwt"
enabled="true" defaultInclude="false" forceSSL="true" />
</node>
</nodes>
</configuration>
</install>
<uninstall>
<configuration>
<nodes>
<node path="/configuration/dotnetnuke/authServices/messageHandlers/add[@name='JWTAuth']" action="remove" />
</nodes>
</configuration>
</uninstall>
</config>
</component>
</components>
</package>
</packages>
</dotnetnuke>