David-Rushton / morello.markdown

A .NET library that pretty prints markdown in the console
MIT License
2 stars 0 forks source link

Namespace does not follow DotNet/Nuget conventions #6

Closed David-Rushton closed 2 years ago

David-Rushton commented 2 years ago

Right now our top level namespace is Markdown. Which is a problem for several reasons:

David-Rushton commented 2 years ago

This is a good chance to fix #7 at the same time.

David-Rushton commented 2 years ago

Proposed Solution

We have a project/company name! Morello. With a registered domain morello.tools. I'm going to reorganise the project to include this.

New Namespace

Morello will become our top-level namespace. It is not currently used on NuGet. A search of UK Companies House and Google suggests the name isn't currently used in tech.

For anyone importing the library

using Morello;

namespace Local.Namespace;

public class SomeClass
{
  public void SomeMethod()
  {
    MarkdownConsole.Write("**bold text**");
  }
}
David-Rushton commented 2 years ago

Addressed in #8