Skip to content

Commit f430b40

Browse files
committed
Refactored Ignia.Topics to OnTopic
While **OnTopic** continues to be maintained by **Ignia**, it has enough libraries that it makes sense to separate out into a new organization, **OnTopic**. In preparation for that, we're simplifying the namespaces (and project names) down from `Ignia.Topics.*` to simply `OnTopic.*`. This affects nearly every file in the project, for obvious reasons.
1 parent 2d89036 commit f430b40

337 files changed

Lines changed: 720 additions & 724 deletions

File tree

Some content is hidden

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

Ignia.Topics.AspNetCore.Mvc.Host/Ignia.Topics.AspNetCore.Mvc.Host.csproj

Lines changed: 0 additions & 17 deletions
This file was deleted.

Ignia.Topics.AspNetCore.Mvc.Host/Views/_ViewImports.cshtml

Lines changed: 0 additions & 12 deletions
This file was deleted.

Ignia.Topics.AspNetCore.Mvc.Tests/Ignia.Topics.AspNetCore.Mvc.Tests.csproj

Lines changed: 0 additions & 24 deletions
This file was deleted.

Ignia.Topics.Web.Host/Global.asax

Lines changed: 0 additions & 1 deletion
This file was deleted.

Ignia.Topics.Web.Mvc.Host/Global.asax

Lines changed: 0 additions & 1 deletion
This file was deleted.

Ignia.Topics.AspNetCore.Mvc.Host/Components/MenuViewComponent.cs renamed to OnTopic.AspNetCore.Mvc.Host/Components/MenuViewComponent.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
| Client Ignia, LLC
44
| Project Topics Library
55
\=============================================================================================================================*/
6-
using Ignia.Topics.AspNetCore.Mvc.Components;
7-
using Ignia.Topics.AspNetCore.Mvc.Models;
8-
using Ignia.Topics.Mapping.Hierarchical;
9-
using Ignia.Topics.Repositories;
10-
using Ignia.Topics.ViewModels;
6+
using OnTopic.AspNetCore.Mvc.Components;
7+
using OnTopic.AspNetCore.Mvc.Models;
8+
using OnTopic.Mapping.Hierarchical;
9+
using OnTopic.Repositories;
10+
using OnTopic.ViewModels;
1111
using Microsoft.AspNetCore.Mvc;
1212

13-
namespace Ignia.Topics.AspNetCore.Mvc.Host.Components {
13+
namespace OnTopic.AspNetCore.Mvc.Host.Components {
1414

1515
/*============================================================================================================================
1616
| CLASS: MENU VIEW COMPONENT

Ignia.Topics.AspNetCore.Mvc.Host/Components/PageLevelNavigationViewComponent.cs renamed to OnTopic.AspNetCore.Mvc.Host/Components/PageLevelNavigationViewComponent.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
| Client Ignia, LLC
44
| Project Topics Library
55
\=============================================================================================================================*/
6-
using Ignia.Topics.AspNetCore.Mvc.Components;
7-
using Ignia.Topics.AspNetCore.Mvc.Models;
8-
using Ignia.Topics.Mapping.Hierarchical;
9-
using Ignia.Topics.Repositories;
10-
using Ignia.Topics.ViewModels;
6+
using OnTopic.AspNetCore.Mvc.Components;
7+
using OnTopic.AspNetCore.Mvc.Models;
8+
using OnTopic.Mapping.Hierarchical;
9+
using OnTopic.Repositories;
10+
using OnTopic.ViewModels;
1111
using Microsoft.AspNetCore.Mvc;
1212

13-
namespace Ignia.Topics.AspNetCore.Mvc.Host.Components {
13+
namespace OnTopic.AspNetCore.Mvc.Host.Components {
1414

1515
/*============================================================================================================================
1616
| CLASS: PAGE-LEVEL NAVIGATION VIEW COMPONENT
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk.Web">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.0</TargetFramework>
5+
<UserSecretsId>62eb85bf-f802-4afd-8bec-3d344e1cfc79</UserSecretsId>
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<ProjectReference Include="..\OnTopic.AspNetCore.Mvc\OnTopic.AspNetCore.Mvc.csproj" />
11+
<ProjectReference Include="..\OnTopic.Data.Caching\OnTopic.Data.Caching.csproj" />
12+
<ProjectReference Include="..\OnTopic.Data.Sql\OnTopic.Data.Sql.csproj" />
13+
<ProjectReference Include="..\OnTopic.ViewModels\OnTopic.ViewModels.csproj" />
14+
<ProjectReference Include="..\OnTopic\OnTopic.csproj" />
15+
</ItemGroup>
16+
17+
</Project>

Ignia.Topics.AspNetCore.Mvc.Host/Program.cs renamed to OnTopic.AspNetCore.Mvc.Host/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
using Microsoft.AspNetCore.Hosting;
88
using Microsoft.Extensions.Hosting;
99

10-
namespace Ignia.Topics.AspNetCore.Mvc.Host {
10+
namespace OnTopic.AspNetCore.Mvc.Host {
1111

1212

1313
/*============================================================================================================================

Ignia.Topics.AspNetCore.Mvc.Host/Properties/launchSettings.json renamed to OnTopic.AspNetCore.Mvc.Host/Properties/launchSettings.json

File renamed without changes.

0 commit comments

Comments
 (0)