Skip to content

Commit 2c39dbb

Browse files
author
Will Strohl
authored
Merge pull request #2 from UpendoVentures/tasks/dnn-944
Updated support to DNN 9.4.4+
2 parents 721b0c6 + ba1dcad commit 2c39dbb

File tree

112 files changed

+163
-18
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+163
-18
lines changed

Build/SolutionReferences.targets

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
-->
2323
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2424
<PropertyGroup>
25-
<DnnVersion>09.03.02</DnnVersion>
25+
<DnnVersion>09.04.04</DnnVersion>
2626
<HccVersion>03.02.01</HccVersion>
2727
<ReferencesPath>..\..\References</ReferencesPath>
2828
<DnnReferencePath>$(ReferencesPath)\DNN\$(DnnVersion)</DnnReferencePath>

Libraries/RestartApp/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("Upendo")]
1212
[assembly: AssemblyProduct("RestartApp Libraries Extension for DNN")]
13-
[assembly: AssemblyCopyright("Copyright 2021 Upendo")]
13+
[assembly: AssemblyCopyright("Copyright 2021 Upendo Ventures, LLC")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -29,5 +29,5 @@
2929
// Build Number
3030
// Revision
3131
//
32-
[assembly: AssemblyVersion("01.00.00")]
33-
[assembly: AssemblyFileVersion("01.00.00")]
32+
[assembly: AssemblyVersion("01.01.00")]
33+
[assembly: AssemblyFileVersion("01.01.00")]

Libraries/RestartApp/RestartApp.cs

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
/*
2+
Copyright Upendo Ventures, LLC
3+
4+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
5+
to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
6+
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
7+
8+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
9+
10+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
11+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
12+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
13+
DEALINGS IN THE SOFTWARE.
14+
*/
115

216
using DotNetNuke.Instrumentation;
317
using DotNetNuke.Services.Exceptions;

Libraries/RestartApp/RestartApp.dnn

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<dotnetnuke type="Package" version="6.0">
33
<packages>
4-
<package name="Upendo.Libraries.RestartApp" type="Library" version="01.00.00">
4+
<package name="Upendo.Libraries.RestartApp" type="Library" version="01.01.00">
55
<friendlyName>RestartApp Scheduled Job</friendlyName>
66
<description>
77
<![CDATA[<p>Allows a scheduled job to run that automatically restarts the application for your DNN website to clear cache and reload the site. This helps prevent issues on sites that don&#39;t recycle.</p>]]>
@@ -16,7 +16,7 @@
1616
<releaseNotes src="ReleaseNotes.txt" />
1717
<azureCompatible>True</azureCompatible>
1818
<dependencies>
19-
<dependency type="CoreVersion">09.02.01</dependency>
19+
<dependency type="CoreVersion">09.04.04</dependency>
2020
</dependencies>
2121
<components>
2222
<component type="ResourceFile">

Libraries/RestartApp/RestartApp_Symbols.dnn

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<dotnetnuke type="Package" version="6.0">
33
<packages>
4-
<package name="Upendo.Libraries.RestartApp" type="Library" version="01.00.00">
4+
<package name="Upendo.Libraries.RestartApp" type="Library" version="01.01.00">
55
<friendlyName>RestartApp Library Symbols</friendlyName>
66
<description><![CDATA[Allows a scheduled job to run that automatically restarts the application for your DNN website to clear cache and reload the site. This helps prevent issues on sites that don&#39;t recycle.]]></description>
77
<owner>
@@ -14,7 +14,7 @@
1414
<releaseNotes src="ReleaseNotes.txt" />
1515
<azureCompatible>True</azureCompatible>
1616
<dependencies>
17-
<dependency type="managedPackage" version="1.0.0">Upendo.Libraries.RestartApp</dependency>
17+
<dependency type="managedPackage" version="1.1.0">Upendo.Libraries.RestartApp</dependency>
1818
</dependencies>
1919
<components>
2020
<component type="ResourceFile">

Libraries/RestartApp/Upendo.Libraries.RestartApp.csproj

+9-9
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
5-
<DnnVersion>09.03.02</DnnVersion>
5+
<DnnVersion>09.04.04</DnnVersion>
66
<HccVersion>03.02.01</HccVersion>
77
<ReferencesPath>..\..\References</ReferencesPath>
88
<DnnReferencePath>$(ReferencesPath)\DNN\$(DnnVersion)</DnnReferencePath>
@@ -38,14 +38,14 @@
3838
</PropertyGroup>
3939
<Import Project="..\..\Build\SolutionReferences.targets" />
4040
<ItemGroup>
41-
<PackageReference Include="DotNetNuke.Core" Version="9.2.1.533" />
42-
<PackageReference Include="DotNetNuke.Instrumentation" Version="9.2.1.533" />
43-
<PackageReference Include="DotNetNuke.Web" Version="9.2.1.533" />
44-
<PackageReference Include="DotNetNuke.Web.Mvc" Version="9.2.1.533" />
45-
<PackageReference Include="DotNetNuke.Web.Client" Version="9.2.1.533" />
46-
<PackageReference Include="DotNetNuke.Web.Deprecated" Version="9.2.1.533" />
47-
<PackageReference Include="DotNetNuke.WebApi" Version="9.2.1.533" />
48-
<PackageReference Include="Newtonsoft.Json" Version="7.0.1" />
41+
<PackageReference Include="DotNetNuke.Core" Version="9.4.4" />
42+
<PackageReference Include="DotNetNuke.Instrumentation" Version="9.4.4" />
43+
<PackageReference Include="DotNetNuke.Web" Version="9.4.4" />
44+
<PackageReference Include="DotNetNuke.Web.Mvc" Version="9.4.4" />
45+
<PackageReference Include="DotNetNuke.Web.Client" Version="9.4.4" />
46+
<PackageReference Include="DotNetNuke.Web.Deprecated" Version="9.4.4" />
47+
<PackageReference Include="DotNetNuke.WebApi" Version="9.4.4" />
48+
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
4949
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.3" />
5050
</ItemGroup>
5151
<ItemGroup>

Libraries/RestartApp/releasenotes.txt

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
</style>
55
<div class="uv-install-wrapper">
66
<h2>RestartApp Libraries Extension for DNN</h2>
7+
<p>Version 01.01.00</p>
8+
<ul>
9+
<li>Raised support for DNN 09.04.04 and up.</li>
10+
</ul>
711
<p>Version 01.00.00</p>
812
<ul>
913
<li>Initial release. Allows a scheduled job to run that automatically restarts the application for your DNN website to clear cache and reload the site. This helps prevent issues on sites that don&#39;t recycle.</li>

README.md

-1
Binary file not shown.
Binary file not shown.
-6.5 KB
Binary file not shown.
-66.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-157 KB
Binary file not shown.
-61.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-45.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-53.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-32.5 KB
Binary file not shown.
-65 KB
Binary file not shown.
-77.5 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-250 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-91.5 KB
Binary file not shown.
Binary file not shown.
-397 KB
Binary file not shown.
-282 KB
Binary file not shown.
-2.6 MB
Binary file not shown.

References/DNN/09.03.02/LiteDB.dll

-217 KB
Binary file not shown.

References/DNN/09.03.02/PetaPoco.dll

-65 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
-14.4 MB
Binary file not shown.
-18.2 MB
Binary file not shown.
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETStandard,Version=v2.0/",
4+
"signature": "cfe1dc2a80602aef150a12815387068463a61a0d"
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETStandard,Version=v2.0": {},
9+
".NETStandard,Version=v2.0/": {
10+
"DotNetNuke.Abstractions/1.0.0": {
11+
"dependencies": {
12+
"NETStandard.Library": "2.0.3"
13+
},
14+
"runtime": {
15+
"DotNetNuke.Abstractions.dll": {}
16+
}
17+
},
18+
"Microsoft.NETCore.Platforms/1.1.0": {},
19+
"NETStandard.Library/2.0.3": {
20+
"dependencies": {
21+
"Microsoft.NETCore.Platforms": "1.1.0"
22+
}
23+
}
24+
}
25+
},
26+
"libraries": {
27+
"DotNetNuke.Abstractions/1.0.0": {
28+
"type": "project",
29+
"serviceable": false,
30+
"sha512": ""
31+
},
32+
"Microsoft.NETCore.Platforms/1.1.0": {
33+
"type": "package",
34+
"serviceable": true,
35+
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
36+
"path": "microsoft.netcore.platforms/1.1.0",
37+
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
38+
},
39+
"NETStandard.Library/2.0.3": {
40+
"type": "package",
41+
"serviceable": true,
42+
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
43+
"path": "netstandard.library/2.0.3",
44+
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
45+
}
46+
}
47+
}
Binary file not shown.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
{
2+
"runtimeTarget": {
3+
"name": ".NETStandard,Version=v2.0/",
4+
"signature": "0c3829ba1182516385f75ddd572b350269a1a3d5"
5+
},
6+
"compilationOptions": {},
7+
"targets": {
8+
".NETStandard,Version=v2.0": {},
9+
".NETStandard,Version=v2.0/": {
10+
"DotNetNuke.DependencyInjection/1.0.0": {
11+
"dependencies": {
12+
"Microsoft.Extensions.DependencyInjection": "2.1.1",
13+
"NETStandard.Library": "2.0.3"
14+
},
15+
"runtime": {
16+
"DotNetNuke.DependencyInjection.dll": {}
17+
}
18+
},
19+
"Microsoft.Extensions.DependencyInjection/2.1.1": {
20+
"dependencies": {
21+
"Microsoft.Extensions.DependencyInjection.Abstractions": "2.1.1"
22+
},
23+
"runtime": {
24+
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll": {
25+
"assemblyVersion": "2.1.1.0",
26+
"fileVersion": "2.1.1.18157"
27+
}
28+
}
29+
},
30+
"Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
31+
"runtime": {
32+
"lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {
33+
"assemblyVersion": "2.1.1.0",
34+
"fileVersion": "2.1.1.18157"
35+
}
36+
}
37+
},
38+
"Microsoft.NETCore.Platforms/1.1.0": {},
39+
"NETStandard.Library/2.0.3": {
40+
"dependencies": {
41+
"Microsoft.NETCore.Platforms": "1.1.0"
42+
}
43+
}
44+
}
45+
},
46+
"libraries": {
47+
"DotNetNuke.DependencyInjection/1.0.0": {
48+
"type": "project",
49+
"serviceable": false,
50+
"sha512": ""
51+
},
52+
"Microsoft.Extensions.DependencyInjection/2.1.1": {
53+
"type": "package",
54+
"serviceable": true,
55+
"sha512": "sha512-RVdgNWT/73M0eCpreGpWv5NmbHFGQzzW+G7nChK8ej84m+d1nzeWrtqcRYnEpKNx3B8V/Uek4tNP0WCaCNjYnQ==",
56+
"path": "microsoft.extensions.dependencyinjection/2.1.1",
57+
"hashPath": "microsoft.extensions.dependencyinjection.2.1.1.nupkg.sha512"
58+
},
59+
"Microsoft.Extensions.DependencyInjection.Abstractions/2.1.1": {
60+
"type": "package",
61+
"serviceable": true,
62+
"sha512": "sha512-MgYpU5cwZohUMKKg3sbPhvGG+eAZ/59E9UwPwlrUkyXU+PGzqwZg9yyQNjhxuAWmoNoFReoemeCku50prYSGzA==",
63+
"path": "microsoft.extensions.dependencyinjection.abstractions/2.1.1",
64+
"hashPath": "microsoft.extensions.dependencyinjection.abstractions.2.1.1.nupkg.sha512"
65+
},
66+
"Microsoft.NETCore.Platforms/1.1.0": {
67+
"type": "package",
68+
"serviceable": true,
69+
"sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==",
70+
"path": "microsoft.netcore.platforms/1.1.0",
71+
"hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512"
72+
},
73+
"NETStandard.Library/2.0.3": {
74+
"type": "package",
75+
"serviceable": true,
76+
"sha512": "sha512-st47PosZSHrjECdjeIzZQbzivYBJFv6P2nv4cj2ypdI204DO+vZ7l5raGMiX4eXMJ53RfOIg+/s4DHVZ54Nu2A==",
77+
"path": "netstandard.library/2.0.3",
78+
"hashPath": "netstandard.library.2.0.3.nupkg.sha512"
79+
}
80+
}
81+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
13.5 KB
Binary file not shown.
402 KB
Binary file not shown.
288 KB
Binary file not shown.
2.62 MB
Binary file not shown.
250 KB
Binary file not shown.
File renamed without changes.
Binary file not shown.

References/DNN/09.04.04/PetaPoco.dll

149 KB
Binary file not shown.

0 commit comments

Comments
 (0)