refactor: renaming namespaces

This commit is contained in:
D. Moonfire 2022-09-06 00:53:22 -05:00
parent 7a42ce2f00
commit d35410625a
191 changed files with 315 additions and 314 deletions

1
examples/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
artifacts/

View File

@ -2,13 +2,13 @@ using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Gallium;
using MfGames.Gallium;
using Nitride;
using Nitride.IO.Contents;
using Nitride.IO.Directories;
using Nitride.IO.Paths;
using Nitride.Pipelines;
using MfGames.Nitride;
using MfGames.Nitride.IO.Contents;
using MfGames.Nitride.IO.Directories;
using MfGames.Nitride.IO.Paths;
using MfGames.Nitride.Pipelines;
namespace CopyFiles;

View File

@ -5,8 +5,8 @@ using Autofac;
using MfGames.IO.Extensions;
using Nitride;
using Nitride.IO;
using MfGames.Nitride;
using MfGames.Nitride.IO;
namespace CopyFiles;

View File

@ -5,7 +5,7 @@ using CliWrap;
using MfGames.IO.Extensions;
using Nitride.Tests;
using MfGames.Nitride.Tests;
using Xunit;
using Xunit.Abstractions;

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Calendar;
namespace MfGames.Nitride.Calendar;
public class CreateCalendarValidator : AbstractValidator<CreateCalender>
{

View File

@ -4,20 +4,20 @@ using System.Linq;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Ical.Net.CalendarComponents;
using Ical.Net.DataTypes;
using Ical.Net.Serialization;
using Nitride.Contents;
using Nitride.Temporal;
using MfGames.Nitride.Contents;
using MfGames.Nitride.Temporal;
using NodaTime;
using Zio;
namespace Nitride.Calendar;
namespace MfGames.Nitride.Calendar;
/// <summary>
/// Creates an iCalendar file from all the entities passed into the method

View File

@ -1,4 +1,4 @@
namespace Nitride.Calendar;
namespace MfGames.Nitride.Calendar;
/// <summary>
/// A marker component for identifying an entity that represents a calendar.

View File

@ -16,7 +16,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
<PackageReference Include="Ical.Net" Version="4.2.0" />
<PackageReference Include="NodaTime" Version="3.1.0" />
<PackageReference Include="Zio" Version="0.15.0" />

View File

@ -1,8 +1,8 @@
using Autofac;
using Nitride.Temporal;
using MfGames.Nitride.Temporal;
namespace Nitride.Calendar;
namespace MfGames.Nitride.Calendar;
public static class NitrideCalendarBuilderExtensions
{

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Calendar;
namespace MfGames.Nitride.Calendar;
public class NitrideCalendarModule : Module
{

View File

@ -4,10 +4,10 @@ using System.Linq;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Nitride.Contents;
using Nitride.Feeds.Structure;
using MfGames.Nitride.Contents;
using MfGames.Nitride.Feeds.Structure;
using NodaTime;
@ -15,7 +15,7 @@ using Serilog;
using Zio;
namespace Nitride.Feeds;
namespace MfGames.Nitride.Feeds;
/// <summary>
/// Creates various feeds from the given input.

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Feeds;
namespace MfGames.Nitride.Feeds;
public class CreateAtomFeedValidator : AbstractValidator<CreateAtomFeed>
{

View File

@ -1,4 +1,4 @@
namespace Nitride.Feeds;
namespace MfGames.Nitride.Feeds;
/// <summary>
/// A marker component that indicates this entity has a feed associated with

View File

@ -1,4 +1,4 @@
namespace Nitride.Feeds;
namespace MfGames.Nitride.Feeds;
/// <summary>
/// A marker component that indicates this page is a feed.

View File

@ -16,7 +16,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
<PackageReference Include="NodaTime" Version="3.1.0" />
<PackageReference Include="Zio" Version="0.15.0" />
</ItemGroup>

View File

@ -1,8 +1,8 @@
using Autofac;
using Nitride.Temporal;
using MfGames.Nitride.Temporal;
namespace Nitride.Feeds;
namespace MfGames.Nitride.Feeds;
public static class NitrideFeedsBuilderExtensions
{

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Feeds;
namespace MfGames.Nitride.Feeds;
public class NitrideFeedsModule : Module
{

View File

@ -1,6 +1,6 @@
using System.Xml.Linq;
namespace Nitride.Feeds.Structure;
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// The type-safe structure for an author element.

View File

@ -1,7 +1,7 @@
using System;
using System.Xml.Linq;
namespace Nitride.Feeds.Structure;
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// The type-safe structure for a entry's category element.

View File

@ -4,9 +4,9 @@ using System.Xml.Linq;
using NodaTime;
using static Nitride.Feeds.Structure.XmlConstants;
using static MfGames.Nitride.Feeds.Structure.XmlConstants;
namespace Nitride.Feeds.Structure;
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// The type-safe structure for an entry in the Atom feed.

View File

@ -3,9 +3,9 @@ using System.Xml.Linq;
using NodaTime;
using static Nitride.Feeds.Structure.XmlConstants;
using static MfGames.Nitride.Feeds.Structure.XmlConstants;
namespace Nitride.Feeds.Structure;
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// The type-safe structure of the top-level feed.

View File

@ -1,6 +1,6 @@
using System.Xml.Linq;
namespace Nitride.Feeds.Structure;
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// Helper methods for working with XML elements.

View File

@ -1,6 +1,6 @@
using System.Xml.Linq;
namespace Nitride.Feeds.Structure;
namespace MfGames.Nitride.Feeds.Structure;
/// <summary>
/// Common constants used while generating feeds.

View File

@ -1,4 +1,4 @@
namespace Nitride.Gemtext;
namespace MfGames.Nitride.Gemtext;
/// <summary>
/// A marker component for indicating that an entity is Gemtext, the format

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Gemtext;
namespace MfGames.Nitride.Gemtext;
public static class NitrideGemtextBuilderExtensions
{

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Gemtext;
namespace MfGames.Nitride.Gemtext;
public class NitrideGemtextModule : Module
{

View File

@ -1,6 +1,6 @@
using Microsoft.CodeAnalysis;
namespace Nitride.Generators;
namespace MfGames.Nitride.Generators;
/// <summary>
/// Various wrappers around the diagnostics to simplify generation.

View File

@ -1,4 +1,4 @@
namespace Nitride.Generators;
namespace MfGames.Nitride.Generators;
/// <summary>
/// All the error messages produced by the generators.

View File

@ -10,7 +10,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.1.0" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.1.0" />

View File

@ -2,7 +2,7 @@ using System.Collections.Generic;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Nitride.Generators;
namespace MfGames.Nitride.Generators;
/// <summary>
/// Internal class that consolidates all of the information needed to generate a

View File

@ -7,7 +7,7 @@ using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.Text;
namespace Nitride.Generators;
namespace MfGames.Nitride.Generators;
/// <summary>
/// Implements a source generator that creates Set* methods for the various

View File

@ -4,7 +4,7 @@ using System.Linq;
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp.Syntax;
namespace Nitride.Generators;
namespace MfGames.Nitride.Generators;
internal class WithPropertySyntaxReceiver : ISyntaxReceiver
{

View File

@ -3,13 +3,13 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using HandlebarsDotNet;
using Nitride.Contents;
using MfGames.Nitride.Contents;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
/// <summary>
/// An operation that applies a common or shared template on the content of

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
public class ApplyStyleTemplateValidator : AbstractValidator<ApplyStyleTemplate>
{

View File

@ -2,7 +2,7 @@ using System.IO;
using HandlebarsDotNet;
namespace Nitride.Handlebars.Configuration;
namespace MfGames.Nitride.Handlebars.Configuration;
/// <summary>
/// Loads the templates from the given directory.

View File

@ -3,7 +3,7 @@ using System.Collections.Generic;
using HandlebarsDotNet;
namespace Nitride.Handlebars.Configuration;
namespace MfGames.Nitride.Handlebars.Configuration;
/// <summary>
/// </summary>

View File

@ -1,6 +1,6 @@
using HandlebarsDotNet;
namespace Nitride.Handlebars.Configuration;
namespace MfGames.Nitride.Handlebars.Configuration;
/// <summary>
/// Describes a block helper which can be registered.

View File

@ -1,6 +1,6 @@
using HandlebarsDotNet;
namespace Nitride.Handlebars.Configuration;
namespace MfGames.Nitride.Handlebars.Configuration;
/// <summary>
/// Describes a dependency injected loader of templates or modules.

View File

@ -4,7 +4,7 @@ using HandlebarsDotNet;
using Open.Threading;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
/// <summary>
/// Implements a cache for templates to prevent compiling the same template

View File

@ -1,4 +1,4 @@
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
/// <summary>
/// A marker component that indicates that a given file with text component

View File

@ -4,9 +4,9 @@ using System.Linq;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
/// <summary>
/// An operation that discovers which text files have a Handlebars template

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
public class IdentifyHandlebarsFromComponentValidator : AbstractValidator<IdentifyHandlebarsFromComponent>
{

View File

@ -1,10 +1,10 @@
using System.Collections.Generic;
using Gallium;
using MfGames.Gallium;
using Nitride.Contents;
using MfGames.Nitride.Contents;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
/// <summary>
/// An operation that discovers which text files have a Handlebars template

View File

@ -11,7 +11,7 @@
<ItemGroup>
<PackageReference Include="Autofac" Version="6.4.0" />
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
<PackageReference Include="Handlebars.Net" Version="2.1.2" />
<PackageReference Include="NodaTime.Testing" Version="3.1.0" />
<PackageReference Include="Open.Threading" Version="2.2.0" />

View File

@ -3,9 +3,9 @@ using System.Collections.Generic;
using Autofac;
using Nitride.Handlebars.Configuration;
using MfGames.Nitride.Handlebars.Configuration;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
public static class NitrideHandlebarsBuilderExtensions
{

View File

@ -4,9 +4,9 @@ using Autofac;
using HandlebarsDotNet;
using Nitride.Handlebars.Configuration;
using MfGames.Nitride.Handlebars.Configuration;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
public class NitrideHandlebarsModule : Module
{

View File

@ -3,13 +3,13 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using HandlebarsDotNet;
using Nitride.Contents;
using MfGames.Nitride.Contents;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
/// <summary>
/// An operation that uses the content to create a template that is then

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Handlebars;
namespace MfGames.Nitride.Handlebars;
public class RenderContentTemplateValidator : AbstractValidator<RenderContentTemplate>
{

View File

@ -1,11 +1,11 @@
using System.Collections.Generic;
using System.Net;
using Gallium;
using MfGames.Gallium;
using Nitride.Contents;
using MfGames.Nitride.Contents;
namespace Nitride.Html;
namespace MfGames.Nitride.Html;
/// <summary>
/// Converts the text input that uses HTML entities and turns them into

View File

@ -1,4 +1,4 @@
namespace Nitride.Html;
namespace MfGames.Nitride.Html;
/// <summary>
/// A marker component that indicates that the entity is an HTML file.

View File

@ -25,7 +25,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
</ItemGroup>
</Project>

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Html;
namespace MfGames.Nitride.Html;
public static class NitrideHtmlBuilderExtensions
{

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Html;
namespace MfGames.Nitride.Html;
public class NitrideHtmlModule : Module
{

View File

@ -1,10 +1,10 @@
using System.IO;
using Nitride.Contents;
using MfGames.Nitride.Contents;
using Zio;
namespace Nitride.IO.Contents;
namespace MfGames.Nitride.IO.Contents;
/// <summary>
/// Contains a wrapper around a file entry to retrieve the binary data.

View File

@ -1,11 +1,11 @@
using System.IO;
using System.Text;
using Nitride.Contents;
using MfGames.Nitride.Contents;
using Zio;
namespace Nitride.IO.Contents;
namespace MfGames.Nitride.IO.Contents;
/// <summary>
/// Contains a wrapper around a file entry to retrieve text data.

View File

@ -7,13 +7,13 @@ using DotNet.Globbing;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Nitride.Contents;
using MfGames.Nitride.Contents;
using Zio;
namespace Nitride.IO.Contents;
namespace MfGames.Nitride.IO.Contents;
/// <summary>
/// A module that reads files from the file system and wraps them in an

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Contents;
namespace MfGames.Nitride.IO.Contents;
public class ReadFilesValidator : AbstractValidator<ReadFiles>
{

View File

@ -6,15 +6,15 @@ using System.Text;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Nitride.Contents;
using MfGames.Nitride.Contents;
using Serilog;
using Zio;
namespace Nitride.IO.Contents;
namespace MfGames.Nitride.IO.Contents;
/// <summary>
/// An operation that writes out entities to a file system.

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Contents;
namespace MfGames.Nitride.IO.Contents;
public class WriteFilesValidator : AbstractValidator<WriteFiles>
{

View File

@ -3,13 +3,13 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Serilog;
using Zio;
namespace Nitride.IO.Directories;
namespace MfGames.Nitride.IO.Directories;
/// <summary>
/// A Nitride operation that removes the contents of a directory but not

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Directories;
namespace MfGames.Nitride.IO.Directories;
public class ClearDirectoryValidator : AbstractValidator<ClearDirectory>
{

View File

@ -1,10 +1,10 @@
using System.Collections.Generic;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.IO;
namespace MfGames.Nitride.IO;
public abstract class FileSystemOperationBase : IOperation
{

View File

@ -1,4 +1,4 @@
namespace Nitride.IO;
namespace MfGames.Nitride.IO;
public enum IfFoundOutput
{

View File

@ -11,7 +11,7 @@
<PackageReference Include="Autofac" Version="6.4.0" />
<PackageReference Include="DotNet.Glob" Version="3.1.3" />
<PackageReference Include="FluentValidation" Version="11.1.0" />
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
<PackageReference Include="MAB.DotIgnore" Version="3.0.2" />
<PackageReference Include="Serilog" Version="2.11.0" />
<PackageReference Include="Zio" Version="0.15.0" />

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.IO;
namespace MfGames.Nitride.IO;
public static class NitrideIOBuilderExtensions
{

View File

@ -1,12 +1,12 @@
using System.Collections.Generic;
using Gallium;
using MfGames.Gallium;
using MAB.DotIgnore;
using Zio;
namespace Nitride.IO;
namespace MfGames.Nitride.IO;
/// <summary>
/// Extension methods for working with paths.

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.IO;
namespace MfGames.Nitride.IO;
public class NitrideIOModule : Module
{

View File

@ -2,11 +2,11 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
[WithProperties]
public partial class AddPathPrefix : OperationBase

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
public class AddPathPrefixValidator : AbstractValidator<AddPathPrefix>
{

View File

@ -2,11 +2,11 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// Changes the extension of the paths given.

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
public class ChangePathExtensionValidator : AbstractValidator<ChangePathExtension>
{

View File

@ -1,8 +1,8 @@
using System.Collections.Generic;
using Gallium;
using MfGames.Gallium;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// A wrapper around List&lt;Entity&gt; for handling direct children lists.

View File

@ -2,13 +2,13 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Nitride.Entities;
using MfGames.Nitride.Entities;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// Implements a scanner that gathers up all the direct child files

View File

@ -3,15 +3,15 @@ using System.Linq;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Nitride.Entities;
using MfGames.Nitride.Entities;
using Serilog;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
[WithProperties]
public partial class LinkDirectChildren : CreateOrUpdateIndex

View File

@ -3,11 +3,11 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// Moves various files to indexes of a direction with the base filename.

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
public class MoveToIndexPathValidator : AbstractValidator<MoveToIndexPath>
{

View File

@ -2,11 +2,11 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// An operation that removes a path prefix from the input.

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
public class RemovePathPrefixValidator : AbstractValidator<RemovePathPrefix>
{

View File

@ -3,11 +3,11 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// A pipeline operation that replaces the UPath of the given entity

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
public class ReplacePathValidator : AbstractValidator<ReplacePath>
{

View File

@ -1,6 +1,6 @@
using Zio;
namespace Nitride.IO.Paths;
namespace MfGames.Nitride.IO.Paths;
/// <summary>
/// Extension methods for the UPath class.

View File

@ -3,13 +3,13 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Markdig;
using Nitride.Contents;
using MfGames.Nitride.Contents;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
[WithProperties]
public abstract partial class ConvertMarkdownToBase : IOperation

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
public class ConvertMarkdownToBaseValidator : AbstractValidator<ConvertMarkdownToBase>
{

View File

@ -2,16 +2,16 @@ using System;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Markdig;
using MfGames.Markdown.Gemtext;
using Nitride.Contents;
using Nitride.Gemtext;
using MfGames.Nitride.Contents;
using MfGames.Nitride.Gemtext;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
/// <summary>
/// Converts the input Markdown files into Gemtext using Markdig and

View File

@ -2,14 +2,14 @@ using System;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Markdig;
using Nitride.Contents;
using Nitride.Html;
using MfGames.Nitride.Contents;
using MfGames.Nitride.Html;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
/// <summary>
/// Converts the input Markdown files into HTML using Markdig. This only

View File

@ -3,13 +3,13 @@ using System.Collections.Generic;
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Nitride.Contents;
using MfGames.Nitride.Contents;
using Zio;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
/// <summary>
/// An operation that identifies Markdown files by their common extensions

View File

@ -1,10 +1,10 @@
using FluentValidation;
using Gallium;
using MfGames.Gallium;
using Zio;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
public class IdentifyMarkdownFromPath : IdentifyMarkdown
{

View File

@ -1,6 +1,6 @@
using FluentValidation;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
public class IdentifyMarkdownValidator : AbstractValidator<IdentifyMarkdown>
{

View File

@ -1,4 +1,4 @@
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
/// <summary>
/// A marker class that indicates that the file is a Markdown file.

View File

@ -16,7 +16,7 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Gallium" Version="1.4.0" />
<PackageReference Include="MfGames.Gallium" Version="0.2.0" />
<PackageReference Include="Markdig" Version="0.30.2" />
<PackageReference Include="MfGames.Markdown.Gemtext" Version="1.2.1" />
<PackageReference Include="Zio" Version="0.15.0" />

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
public static class NitrideMarkdownBuilderExtensions
{

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Markdown;
namespace MfGames.Nitride.Markdown;
public class NitrideMarkdownModule : Module
{

View File

@ -1,4 +1,4 @@
namespace Nitride.Slugs;
namespace MfGames.Nitride.Slugs;
/// <summary>
/// An interface that provides slugs for various paths.

View File

@ -2,7 +2,7 @@ using System;
using Autofac;
namespace Nitride.Slugs;
namespace MfGames.Nitride.Slugs;
public static class NitrideSlugsBuilderExtensions
{

View File

@ -1,6 +1,6 @@
using Autofac;
namespace Nitride.Slugs;
namespace MfGames.Nitride.Slugs;
public class NitrideSlugsModule : Module
{

View File

@ -5,7 +5,7 @@ using System.Linq;
using Slugify;
namespace Nitride.Slugs;
namespace MfGames.Nitride.Slugs;
/// <summary>
/// A default implementation of ISlugProvider.

View File

@ -4,7 +4,7 @@ using System.Globalization;
using System.Linq;
using System.Text;
namespace Nitride.Slugs;
namespace MfGames.Nitride.Slugs;
/// <summary>
/// Extends the slug provider to strip out accented characters for

View File

@ -1,4 +1,4 @@
namespace Nitride.Temporal;
namespace MfGames.Nitride.Temporal;
/// <summary>
/// A marker component for identifying a post that can expire.

View File

@ -3,14 +3,14 @@ using System.CommandLine;
using System.CommandLine.Invocation;
using System.Globalization;
using Nitride.Commands;
using MfGames.Nitride.Commands;
using NodaTime;
using NodaTime.Testing;
using Serilog;
namespace Nitride.Temporal.Cli;
namespace MfGames.Nitride.Temporal.Cli;
/// <summary>
/// A factory to inject the "--date=XXXX-XX-XX" argument into the build

View File

@ -2,7 +2,7 @@ using System.CommandLine;
using System.CommandLine.Invocation;
using System.Globalization;
using Nitride.Commands;
using MfGames.Nitride.Commands;
using NodaTime;
@ -10,7 +10,7 @@ using Serilog;
using TimeSpanParserUtil;
namespace Nitride.Temporal.Cli;
namespace MfGames.Nitride.Temporal.Cli;
/// <summary>
/// A factory to inject the "--expires=XXXX" argument into the build

Some files were not shown because too many files have changed in this diff Show More