Skip to content

Commit

Permalink
Rename generator project to GoogleMaterialDesignIconsGenerator
Browse files Browse the repository at this point in the history
  • Loading branch information
ScarletKuro committed May 29, 2024
1 parent 0d660a4 commit cd15c5c
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 33 deletions.
2 changes: 1 addition & 1 deletion MudBlazor.IconPack.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 17.10.34916.146
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MudBlazor.FontIcons.MaterialSymbols", "src\MudBlazor.FontIcons.MaterialSymbols\MudBlazor.FontIcons.MaterialSymbols.csproj", "{57334B6A-1E52-4571-B01A-8986A04877C0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MaterialSymbolsParser", "src\MaterialSymbolsParser\MaterialSymbolsParser.csproj", "{451E5BC8-C1D9-46DA-8151-B3A204300562}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GoogleMaterialDesignIconsGenerator", "src\GoogleMaterialDesignIconsGenerator\GoogleMaterialDesignIconsGenerator.csproj", "{451E5BC8-C1D9-46DA-8151-B3A204300562}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "_build", "build\_build.csproj", "{62C839DE-403F-4001-AF1A-32DCCB75DB7F}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.ComponentModel;

namespace MaterialSymbolsParser.Extensions;
namespace GoogleMaterialDesignIconsGenerator.Extensions;

public static class EnumExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Globalization;

namespace MaterialSymbolsParser.Extensions;
namespace GoogleMaterialDesignIconsGenerator.Extensions;

public static class StringExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.CodeAnalysis;
using Microsoft.CodeAnalysis.CSharp;

namespace MaterialSymbolsParser.Extensions;
namespace GoogleMaterialDesignIconsGenerator.Extensions;

public static class SyntaxNodeExtensions
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
using MaterialSymbolsParser.Extensions;
using MaterialSymbolsParser.Model.Google;
using GoogleMaterialDesignIconsGenerator.Extensions;
using GoogleMaterialDesignIconsGenerator.Model.Google;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.CSharp;
using Microsoft.CodeAnalysis;

namespace MaterialSymbolsParser.Generator;
namespace GoogleMaterialDesignIconsGenerator.Generator;

public abstract class GeneratorBase : IGenerator
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using MaterialSymbolsParser.Model;
using GoogleMaterialDesignIconsGenerator.Model;

namespace MaterialSymbolsParser.Generator;
namespace GoogleMaterialDesignIconsGenerator.Generator;

public static class GeneratorFactory
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using MaterialSymbolsParser.Model.Google;
using GoogleMaterialDesignIconsGenerator.Model.Google;
using Microsoft.CodeAnalysis.CSharp.Syntax;

namespace MaterialSymbolsParser.Generator;
namespace GoogleMaterialDesignIconsGenerator.Generator;

public interface IGenerator
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MaterialSymbolsParser.Generator;
namespace GoogleMaterialDesignIconsGenerator.Generator;

public class MaterialIconsGenerator : GeneratorBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace MaterialSymbolsParser.Generator;
namespace GoogleMaterialDesignIconsGenerator.Generator;

public class MaterialSymbolsGenerator : GeneratorBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.ObjectModel;
using System.Text.Json.Serialization;

namespace MaterialSymbolsParser.Model.Google;
namespace GoogleMaterialDesignIconsGenerator.Model.Google;

public class Icon
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.ObjectModel;
using System.Text.Json.Serialization;

namespace MaterialSymbolsParser.Model.Google;
namespace GoogleMaterialDesignIconsGenerator.Model.Google;

public class Metadata
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.Text.Json.Serialization;

namespace MaterialSymbolsParser.Model.Google;
namespace GoogleMaterialDesignIconsGenerator.Model.Google;

[JsonSerializable(typeof(Metadata))]
public partial class MetadataJsonSerializerContext : JsonSerializerContext;
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using System.ComponentModel;

namespace MaterialSymbolsParser.Model;
namespace GoogleMaterialDesignIconsGenerator.Model;

public enum IconType
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
using MaterialSymbolsParser.Extensions;
using MaterialSymbolsParser.Model;
using MaterialSymbolsParser.Service;
using GoogleMaterialDesignIconsGenerator.Extensions;
using GoogleMaterialDesignIconsGenerator.Model;
using GoogleMaterialDesignIconsGenerator.Service;

namespace MaterialSymbolsParser;
namespace GoogleMaterialDesignIconsGenerator;

public static class Program
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
using MaterialSymbolsParser.Model.Google;
using GoogleMaterialDesignIconsGenerator.Generator;
using GoogleMaterialDesignIconsGenerator.Model;
using GoogleMaterialDesignIconsGenerator.Model.Google;
using Microsoft.CodeAnalysis;
using MaterialSymbolsParser.Generator;
using MaterialSymbolsParser.Model;

namespace MaterialSymbolsParser.Service;
namespace GoogleMaterialDesignIconsGenerator.Service;

public class CodeGenerationService
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Text.Json;
using MaterialSymbolsParser.Model.Google;
using GoogleMaterialDesignIconsGenerator.Model.Google;

namespace MaterialSymbolsParser.Service;
namespace GoogleMaterialDesignIconsGenerator.Service;

public class IconHttpClientService : IDisposable
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using MaterialSymbolsParser.Extensions;
using MaterialSymbolsParser.Model;
using GoogleMaterialDesignIconsGenerator.Extensions;
using GoogleMaterialDesignIconsGenerator.Model;

namespace MaterialSymbolsParser.Utility;
namespace GoogleMaterialDesignIconsGenerator.Utility;

public static class FamilyMap
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using MaterialSymbolsParser.Model;
using MaterialSymbolsParser.Model.Google;
using GoogleMaterialDesignIconsGenerator.Model;
using GoogleMaterialDesignIconsGenerator.Model.Google;

namespace MaterialSymbolsParser.Utility;
namespace GoogleMaterialDesignIconsGenerator.Utility;

public static class IconFilter
{
Expand Down

0 comments on commit cd15c5c

Please sign in to comment.