-
Notifications
You must be signed in to change notification settings - Fork 754
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4522 from dnnsoftware/release/9.9.0
Merges release/9.9.0 into master in order to release
- Loading branch information
Showing
1,935 changed files
with
31,166 additions
and
25,748 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,20 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using Cake.Core; | ||
using Cake.Core.Configuration; | ||
|
||
using Cake.Frosting; | ||
using Cake.NuGet; | ||
|
||
public class Program : IFrostingStartup | ||
public class Program | ||
{ | ||
public static int Main(string[] args) | ||
{ | ||
// Create the host. | ||
var host = new CakeHostBuilder() | ||
.WithArguments(args) | ||
.UseStartup<Program>() | ||
.Build(); | ||
|
||
// Run the host. | ||
return host.Run(); | ||
} | ||
|
||
public void Configure(ICakeServices services) | ||
{ | ||
services.UseContext<Context>(); | ||
services.UseLifetime<Lifetime>(); | ||
services.UseWorkingDirectory(".."); | ||
|
||
// from https://github.com/cake-build/cake/discussions/2931 | ||
var module = new NuGetModule(new CakeConfiguration(new Dictionary<string, string>())); | ||
module.Register(services); | ||
|
||
services.UseTool(new Uri("nuget:?package=GitVersion.CommandLine&version=5.0.1")); | ||
services.UseTool(new Uri("nuget:?package=Microsoft.TestPlatform&version=16.8.0")); | ||
services.UseTool(new Uri("nuget:?package=NUnitTestAdapter&version=2.3.0")); | ||
services.UseTool(new Uri("nuget:?package=NuGet.CommandLine&version=5.8.0")); | ||
return new CakeHost() | ||
.UseContext<Context>() | ||
.UseLifetime<Lifetime>() | ||
.UseWorkingDirectory("..") | ||
.SetToolPath("../tools") | ||
.InstallTool(new Uri("nuget:?package=GitVersion.CommandLine&version=5.0.1")) | ||
.InstallTool(new Uri("nuget:?package=Microsoft.TestPlatform&version=16.8.0")) | ||
.InstallTool(new Uri("nuget:?package=NUnitTestAdapter&version=2.3.0")) | ||
.InstallTool(new Uri("nuget:?package=NuGet.CommandLine&version=5.8.0")) | ||
.Run(args); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,20 @@ | ||
The MIT License (MIT)<br/> | ||
<br/> | ||
Copyright (c) .NET Foundation and Contributors<br/> | ||
<br/> | ||
All Rights Reserved<br/> | ||
<br/> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, 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:<br/> | ||
<br/> | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software.<br/> | ||
<br/> | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
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 DEALINGS IN THE | ||
SOFTWARE.<br/> | ||
<div class="License"> | ||
<h3>License</h3> | ||
<p class="Owner"> | ||
Copyright (c) .NET Foundation and Contributors<br /> | ||
All Rights Reserved | ||
</p> | ||
<p> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, 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: | ||
</p> | ||
<p> | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions | ||
of the Software. | ||
</p> | ||
<p> | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 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 DEALINGS IN THE SOFTWARE. | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
DNN Platform/Admin Modules/Dnn.Modules.Console/Dnn.Modules.Console.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 20 additions & 23 deletions
43
DNN Platform/Admin Modules/Dnn.Modules.Console/license.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,20 @@ | ||
The MIT License (MIT)<br/> | ||
<br/> | ||
Copyright (c) .NET Foundation and Contributors<br/> | ||
<br/> | ||
All Rights Reserved<br/> | ||
<br/> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, 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:<br/> | ||
<br/> | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software.<br/> | ||
<br/> | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
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 DEALINGS IN THE | ||
SOFTWARE.<br/> | ||
<div class="License"> | ||
<h3>License</h3> | ||
<p class="Owner"> | ||
Copyright (c) .NET Foundation and Contributors<br /> | ||
All Rights Reserved | ||
</p> | ||
<p> | ||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated | ||
documentation files (the "Software"), to deal in the Software without restriction, including without limitation | ||
the rights to use, copy, modify, merge, publish, distribute, sublicense, 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: | ||
</p> | ||
<p> | ||
The above copyright notice and this permission notice shall be included in all copies or substantial portions | ||
of the Software. | ||
</p> | ||
<p> | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 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 DEALINGS IN THE SOFTWARE. | ||
</p> | ||
</div> |
Oops, something went wrong.