Skip to content

Commit 2d5fe36

Browse files
committed
Fixed inconsistent project naming
1 parent ee46055 commit 2d5fe36

File tree

94 files changed

+155
-153
lines changed

Some content is hidden

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

94 files changed

+155
-153
lines changed

LinkDotNet.Domain/BlogPost.cs renamed to LinkDotNet.Blog.Domain/BlogPost.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
using System.Collections.Generic;
33
using System.Linq;
44

5-
namespace LinkDotNet.Domain
5+
namespace LinkDotNet.Blog.Domain
66
{
77
public class BlogPost : Entity
88
{

LinkDotNet.Domain/Entity.cs renamed to LinkDotNet.Blog.Domain/Entity.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace LinkDotNet.Domain
1+
namespace LinkDotNet.Blog.Domain
22
{
33
public abstract class Entity
44
{

LinkDotNet.Domain/Enumeration.cs renamed to LinkDotNet.Blog.Domain/Enumeration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using System.Linq;
44
using System.Reflection;
55

6-
namespace LinkDotNet.Domain
6+
namespace LinkDotNet.Blog.Domain
77
{
88
public abstract class Enumeration<TEnumeration>
99
where TEnumeration : Enumeration<TEnumeration>

LinkDotNet.Domain/Introduction.cs renamed to LinkDotNet.Blog.Domain/Introduction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace LinkDotNet.Domain
1+
namespace LinkDotNet.Blog.Domain
22
{
33
public class Introduction
44
{

LinkDotNet.Domain/LinkDotNet.Domain.csproj renamed to LinkDotNet.Blog.Domain/LinkDotNet.Blog.Domain.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
55
<Nullable>disable</Nullable>
6+
<AssemblyName>LinkDotNet.Blog.Domain</AssemblyName>
7+
<RootNamespace>LinkDotNet.Blog.Domain</RootNamespace>
68
</PropertyGroup>
79

810
<ItemGroup>

LinkDotNet.Domain/ProficiencyLevel.cs renamed to LinkDotNet.Blog.Domain/ProficiencyLevel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace LinkDotNet.Domain
1+
namespace LinkDotNet.Blog.Domain
22
{
33
public class ProficiencyLevel : Enumeration<ProficiencyLevel>
44
{

LinkDotNet.Domain/ProfileInformation.cs renamed to LinkDotNet.Blog.Domain/ProfileInformation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace LinkDotNet.Domain
1+
namespace LinkDotNet.Blog.Domain
22
{
33
public record ProfileInformation
44
{

LinkDotNet.Domain/ProfileInformationEntry.cs renamed to LinkDotNet.Blog.Domain/ProfileInformationEntry.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System;
22
using System.Diagnostics;
33

4-
namespace LinkDotNet.Domain
4+
namespace LinkDotNet.Blog.Domain
55
{
66
[DebuggerDisplay("{Content} with sort order {SortOrder}")]
77
public class ProfileInformationEntry : Entity

LinkDotNet.Domain/Skill.cs renamed to LinkDotNet.Blog.Domain/Skill.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System;
22

3-
namespace LinkDotNet.Domain
3+
namespace LinkDotNet.Blog.Domain
44
{
55
public class Skill : Entity
66
{

LinkDotNet.Domain/Tag.cs renamed to LinkDotNet.Blog.Domain/Tag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace LinkDotNet.Domain
1+
namespace LinkDotNet.Blog.Domain
22
{
33
public class Tag
44
{

0 commit comments

Comments
 (0)