Skip to content

Commit 26c676c

Browse files
committed
Merge branch 'release/5.1.0' into master
The 5.1.0 release of GoldSim focuses on upgrades to backend dependencies, as well as a handful of business requests. Notably, this includes upgrading to C# 10 (52358dd, d8b36b7), ASP.NET Core 6.0 (96b6fd5), as well as OnTopic 5.2.0 (b2537a3). In terms of new features, this includes the introduction of reCaptcha v3 (098d6e1), a new `FormController` (640be65), and support for OnTopic 5.2.0's new `AttributeDictionary` constructor for view models (e50b674). For a full list of updates, see Pull Request #30.
2 parents 7646cd2 + 0fc6a49 commit 26c676c

File tree

134 files changed

+6597
-6104
lines changed

Some content is hidden

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

134 files changed

+6597
-6104
lines changed

Areas/Administration/Controllers/InvoicesController.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,11 @@
33
| Client GoldSim
44
| Project Website
55
\=============================================================================================================================*/
6-
using System;
76
using System.Globalization;
8-
using System.Threading.Tasks;
97
using GoldSim.Web.Administration.Models.Invoices;
108
using Microsoft.AspNetCore.Authorization;
11-
using Microsoft.AspNetCore.Mvc;
129
using OnTopic;
13-
using OnTopic.Attributes;
14-
using OnTopic.Internal.Diagnostics;
1510
using OnTopic.Mapping;
16-
using OnTopic.Repositories;
1711

1812
namespace GoldSim.Web.Administration.Controllers {
1913

Areas/Administration/Controllers/LicensesController.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,10 @@
33
| Client GoldSim
44
| Project Website
55
\=============================================================================================================================*/
6-
using System;
7-
using System.Linq;
86
using GoldSim.Web.Administration.Services;
97
using Microsoft.AspNetCore.Authorization;
10-
using Microsoft.AspNetCore.Mvc;
118
using OnTopic.AspNetCore.Mvc.Controllers;
12-
using OnTopic.Internal.Diagnostics;
139
using OnTopic.Mapping;
14-
using OnTopic.Repositories;
1510

1611
namespace GoldSim.Web.Controllers {
1712

Areas/Administration/Models/Invoices/EditInvoiceViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
| Client GoldSim
44
| Project Website
55
\=============================================================================================================================*/
6-
using OnTopic.ViewModels;
76

87
namespace GoldSim.Web.Administration.Models.Invoices {
98

Areas/Administration/Models/Invoices/InvoiceListViewModel.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
| Project Website
55
\=============================================================================================================================*/
66
using System.Collections.ObjectModel;
7-
using OnTopic.Mapping.Annotations;
8-
using OnTopic.ViewModels;
97

108
namespace GoldSim.Web.Administration.Models.Invoices {
119

Areas/Administration/Models/Invoices/InvoiceTopicViewModel.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
| Client Goldsim
44
| Project Website
55
\=============================================================================================================================*/
6-
using System;
7-
using System.ComponentModel.DataAnnotations;
8-
using Microsoft.AspNetCore.Mvc;
96

107
namespace GoldSim.Web.Administration.Models.Invoices {
118

Areas/Administration/Models/Licenses/LicenseAdministrationTopicViewModel.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
| Project Website
55
\=============================================================================================================================*/
66
using System.Collections.ObjectModel;
7-
using OnTopic.Mapping.Annotations;
8-
using OnTopic.ViewModels;
97

108
namespace GoldSim.Web.Administration.Models.Licenses {
119

Areas/Administration/Models/Licenses/LicenseRequestTopicViewModel.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
| Client GoldSim
44
| Project Website
55
\=============================================================================================================================*/
6-
using System;
76
using GoldSim.Web.Forms.Models.Partials;
87

98
namespace GoldSim.Web.Administration.Models.Licenses {

Areas/Administration/Services/ITopicExportService.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
| Client GoldSim
44
| Project Website
55
\=============================================================================================================================*/
6-
using System.Collections.Generic;
7-
using System.IO;
86
using OnTopic;
97

108
namespace GoldSim.Web.Administration.Services {

Areas/Administration/Services/LicenseExportService.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,12 @@
33
| Client GoldSim
44
| Project Website
55
\=============================================================================================================================*/
6-
using System;
7-
using System.Collections.Generic;
86
using System.Data;
97
using System.Drawing;
108
using System.Globalization;
11-
using System.IO;
12-
using System.Linq;
139
using OfficeOpenXml;
1410
using OfficeOpenXml.Style;
1511
using OnTopic;
16-
using OnTopic.Attributes;
17-
using OnTopic.Internal.Diagnostics;
1812

1913
namespace GoldSim.Web.Administration.Services {
2014

Areas/Courses/Components/CourseListViewComponent.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,8 @@
44
| Project GoldSim Website
55
\=============================================================================================================================*/
66
using GoldSim.Web.Courses.Models;
7-
using Microsoft.AspNetCore.Mvc;
87
using OnTopic;
98
using OnTopic.Mapping.Hierarchical;
10-
using OnTopic.Repositories;
119

1210
namespace GoldSim.Web.Courses.Components {
1311

0 commit comments

Comments
 (0)