diff --git a/MudBlazor.IconPack.sln b/MudBlazor.IconPack.sln index cf33cc5..39b33b1 100644 --- a/MudBlazor.IconPack.sln +++ b/MudBlazor.IconPack.sln @@ -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 diff --git a/src/MaterialSymbolsParser/Extensions/EnumExtensions.cs b/src/GoogleMaterialDesignIconsGenerator/Extensions/EnumExtensions.cs similarity index 90% rename from src/MaterialSymbolsParser/Extensions/EnumExtensions.cs rename to src/GoogleMaterialDesignIconsGenerator/Extensions/EnumExtensions.cs index 5f61248..6d754a0 100644 --- a/src/MaterialSymbolsParser/Extensions/EnumExtensions.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Extensions/EnumExtensions.cs @@ -1,6 +1,6 @@ using System.ComponentModel; -namespace MaterialSymbolsParser.Extensions; +namespace GoogleMaterialDesignIconsGenerator.Extensions; public static class EnumExtensions { diff --git a/src/MaterialSymbolsParser/Extensions/StringExtensions.cs b/src/GoogleMaterialDesignIconsGenerator/Extensions/StringExtensions.cs similarity index 91% rename from src/MaterialSymbolsParser/Extensions/StringExtensions.cs rename to src/GoogleMaterialDesignIconsGenerator/Extensions/StringExtensions.cs index 848b972..0a37c85 100644 --- a/src/MaterialSymbolsParser/Extensions/StringExtensions.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Extensions/StringExtensions.cs @@ -1,6 +1,6 @@ using System.Globalization; -namespace MaterialSymbolsParser.Extensions; +namespace GoogleMaterialDesignIconsGenerator.Extensions; public static class StringExtensions { diff --git a/src/MaterialSymbolsParser/Extensions/SyntaxNodeExtensions.cs b/src/GoogleMaterialDesignIconsGenerator/Extensions/SyntaxNodeExtensions.cs similarity index 92% rename from src/MaterialSymbolsParser/Extensions/SyntaxNodeExtensions.cs rename to src/GoogleMaterialDesignIconsGenerator/Extensions/SyntaxNodeExtensions.cs index 433296f..491fad7 100644 --- a/src/MaterialSymbolsParser/Extensions/SyntaxNodeExtensions.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Extensions/SyntaxNodeExtensions.cs @@ -1,7 +1,7 @@ using Microsoft.CodeAnalysis; using Microsoft.CodeAnalysis.CSharp; -namespace MaterialSymbolsParser.Extensions; +namespace GoogleMaterialDesignIconsGenerator.Extensions; public static class SyntaxNodeExtensions { diff --git a/src/MaterialSymbolsParser/Generator/GeneratorBase.cs b/src/GoogleMaterialDesignIconsGenerator/Generator/GeneratorBase.cs similarity index 96% rename from src/MaterialSymbolsParser/Generator/GeneratorBase.cs rename to src/GoogleMaterialDesignIconsGenerator/Generator/GeneratorBase.cs index b732f21..253d52c 100644 --- a/src/MaterialSymbolsParser/Generator/GeneratorBase.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Generator/GeneratorBase.cs @@ -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 { diff --git a/src/MaterialSymbolsParser/Generator/GeneratorFactory.cs b/src/GoogleMaterialDesignIconsGenerator/Generator/GeneratorFactory.cs similarity index 79% rename from src/MaterialSymbolsParser/Generator/GeneratorFactory.cs rename to src/GoogleMaterialDesignIconsGenerator/Generator/GeneratorFactory.cs index 18054a3..9bd0e8c 100644 --- a/src/MaterialSymbolsParser/Generator/GeneratorFactory.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Generator/GeneratorFactory.cs @@ -1,6 +1,6 @@ -using MaterialSymbolsParser.Model; +using GoogleMaterialDesignIconsGenerator.Model; -namespace MaterialSymbolsParser.Generator; +namespace GoogleMaterialDesignIconsGenerator.Generator; public static class GeneratorFactory { diff --git a/src/MaterialSymbolsParser/Generator/IGenerator.cs b/src/GoogleMaterialDesignIconsGenerator/Generator/IGenerator.cs similarity index 69% rename from src/MaterialSymbolsParser/Generator/IGenerator.cs rename to src/GoogleMaterialDesignIconsGenerator/Generator/IGenerator.cs index b41ab35..ac680d2 100644 --- a/src/MaterialSymbolsParser/Generator/IGenerator.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Generator/IGenerator.cs @@ -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 { diff --git a/src/MaterialSymbolsParser/Generator/MaterialIconsGenerator.cs b/src/GoogleMaterialDesignIconsGenerator/Generator/MaterialIconsGenerator.cs similarity index 69% rename from src/MaterialSymbolsParser/Generator/MaterialIconsGenerator.cs rename to src/GoogleMaterialDesignIconsGenerator/Generator/MaterialIconsGenerator.cs index 3dc3769..f769830 100644 --- a/src/MaterialSymbolsParser/Generator/MaterialIconsGenerator.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Generator/MaterialIconsGenerator.cs @@ -1,4 +1,4 @@ -namespace MaterialSymbolsParser.Generator; +namespace GoogleMaterialDesignIconsGenerator.Generator; public class MaterialIconsGenerator : GeneratorBase { diff --git a/src/MaterialSymbolsParser/Generator/MaterialSymbolsGenerator.cs b/src/GoogleMaterialDesignIconsGenerator/Generator/MaterialSymbolsGenerator.cs similarity index 69% rename from src/MaterialSymbolsParser/Generator/MaterialSymbolsGenerator.cs rename to src/GoogleMaterialDesignIconsGenerator/Generator/MaterialSymbolsGenerator.cs index e8cc5da..4d5d096 100644 --- a/src/MaterialSymbolsParser/Generator/MaterialSymbolsGenerator.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Generator/MaterialSymbolsGenerator.cs @@ -1,4 +1,4 @@ -namespace MaterialSymbolsParser.Generator; +namespace GoogleMaterialDesignIconsGenerator.Generator; public class MaterialSymbolsGenerator : GeneratorBase { diff --git a/src/MaterialSymbolsParser/MaterialSymbolsParser.csproj b/src/GoogleMaterialDesignIconsGenerator/GoogleMaterialDesignIconsGenerator.csproj similarity index 100% rename from src/MaterialSymbolsParser/MaterialSymbolsParser.csproj rename to src/GoogleMaterialDesignIconsGenerator/GoogleMaterialDesignIconsGenerator.csproj diff --git a/src/MaterialSymbolsParser/Model/Google/Icon.cs b/src/GoogleMaterialDesignIconsGenerator/Model/Google/Icon.cs similarity index 94% rename from src/MaterialSymbolsParser/Model/Google/Icon.cs rename to src/GoogleMaterialDesignIconsGenerator/Model/Google/Icon.cs index c592a23..14140e4 100644 --- a/src/MaterialSymbolsParser/Model/Google/Icon.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Model/Google/Icon.cs @@ -1,7 +1,7 @@ using System.Collections.ObjectModel; using System.Text.Json.Serialization; -namespace MaterialSymbolsParser.Model.Google; +namespace GoogleMaterialDesignIconsGenerator.Model.Google; public class Icon { diff --git a/src/MaterialSymbolsParser/Model/Google/Metadata.cs b/src/GoogleMaterialDesignIconsGenerator/Model/Google/Metadata.cs similarity index 90% rename from src/MaterialSymbolsParser/Model/Google/Metadata.cs rename to src/GoogleMaterialDesignIconsGenerator/Model/Google/Metadata.cs index 1e6d996..1280643 100644 --- a/src/MaterialSymbolsParser/Model/Google/Metadata.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Model/Google/Metadata.cs @@ -1,7 +1,7 @@ using System.Collections.ObjectModel; using System.Text.Json.Serialization; -namespace MaterialSymbolsParser.Model.Google; +namespace GoogleMaterialDesignIconsGenerator.Model.Google; public class Metadata { diff --git a/src/MaterialSymbolsParser/Model/Google/MetadataJsonSerializerContext.cs b/src/GoogleMaterialDesignIconsGenerator/Model/Google/MetadataJsonSerializerContext.cs similarity index 72% rename from src/MaterialSymbolsParser/Model/Google/MetadataJsonSerializerContext.cs rename to src/GoogleMaterialDesignIconsGenerator/Model/Google/MetadataJsonSerializerContext.cs index a038e12..4c0497c 100644 --- a/src/MaterialSymbolsParser/Model/Google/MetadataJsonSerializerContext.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Model/Google/MetadataJsonSerializerContext.cs @@ -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; \ No newline at end of file diff --git a/src/MaterialSymbolsParser/Model/IconType.cs b/src/GoogleMaterialDesignIconsGenerator/Model/IconType.cs similarity index 77% rename from src/MaterialSymbolsParser/Model/IconType.cs rename to src/GoogleMaterialDesignIconsGenerator/Model/IconType.cs index 7991cc9..fca2690 100644 --- a/src/MaterialSymbolsParser/Model/IconType.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Model/IconType.cs @@ -1,6 +1,6 @@ using System.ComponentModel; -namespace MaterialSymbolsParser.Model; +namespace GoogleMaterialDesignIconsGenerator.Model; public enum IconType { diff --git a/src/MaterialSymbolsParser/Program.cs b/src/GoogleMaterialDesignIconsGenerator/Program.cs similarity index 76% rename from src/MaterialSymbolsParser/Program.cs rename to src/GoogleMaterialDesignIconsGenerator/Program.cs index f090520..1a080bb 100644 --- a/src/MaterialSymbolsParser/Program.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Program.cs @@ -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 { diff --git a/src/MaterialSymbolsParser/Service/CodeGenerationService.cs b/src/GoogleMaterialDesignIconsGenerator/Service/CodeGenerationService.cs similarity index 81% rename from src/MaterialSymbolsParser/Service/CodeGenerationService.cs rename to src/GoogleMaterialDesignIconsGenerator/Service/CodeGenerationService.cs index 6ffef10..62c922d 100644 --- a/src/MaterialSymbolsParser/Service/CodeGenerationService.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Service/CodeGenerationService.cs @@ -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 { diff --git a/src/MaterialSymbolsParser/Service/IconHttpClientService.cs b/src/GoogleMaterialDesignIconsGenerator/Service/IconHttpClientService.cs similarity index 93% rename from src/MaterialSymbolsParser/Service/IconHttpClientService.cs rename to src/GoogleMaterialDesignIconsGenerator/Service/IconHttpClientService.cs index cf34d6d..95a7a9e 100644 --- a/src/MaterialSymbolsParser/Service/IconHttpClientService.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Service/IconHttpClientService.cs @@ -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 { diff --git a/src/MaterialSymbolsParser/Utility/FamilyMap.cs b/src/GoogleMaterialDesignIconsGenerator/Utility/FamilyMap.cs similarity index 96% rename from src/MaterialSymbolsParser/Utility/FamilyMap.cs rename to src/GoogleMaterialDesignIconsGenerator/Utility/FamilyMap.cs index 8dac2b5..eb7af78 100644 --- a/src/MaterialSymbolsParser/Utility/FamilyMap.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Utility/FamilyMap.cs @@ -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 { diff --git a/src/MaterialSymbolsParser/Utility/IconFilter.cs b/src/GoogleMaterialDesignIconsGenerator/Utility/IconFilter.cs similarity index 83% rename from src/MaterialSymbolsParser/Utility/IconFilter.cs rename to src/GoogleMaterialDesignIconsGenerator/Utility/IconFilter.cs index fa481a5..16946c2 100644 --- a/src/MaterialSymbolsParser/Utility/IconFilter.cs +++ b/src/GoogleMaterialDesignIconsGenerator/Utility/IconFilter.cs @@ -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 {