diff --git a/src/.vs/DistroGrubThemes/v17/.suo b/src/.vs/DistroGrubThemes/v17/.suo
new file mode 100644
index 0000000..315825d
Binary files /dev/null and b/src/.vs/DistroGrubThemes/v17/.suo differ
diff --git a/src/DistroGrubThemes.csproj b/src/DistroGrubThemes.csproj
new file mode 100644
index 0000000..b132f8d
--- /dev/null
+++ b/src/DistroGrubThemes.csproj
@@ -0,0 +1,15 @@
+
+
+
+ Exe
+ netcoreapp3.1
+ Adison Cavani
+ Adison Cavani
+
+
+
+
+
+
+
+
diff --git a/src/DistroGrubThemes.sln b/src/DistroGrubThemes.sln
new file mode 100644
index 0000000..ea76239
--- /dev/null
+++ b/src/DistroGrubThemes.sln
@@ -0,0 +1,25 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31717.71
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DistroGrubThemes", "DistroGrubThemes.csproj", "{0CCFA519-E529-4AF9-B800-92FC96351EE9}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {0CCFA519-E529-4AF9-B800-92FC96351EE9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {0CCFA519-E529-4AF9-B800-92FC96351EE9}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {0CCFA519-E529-4AF9-B800-92FC96351EE9}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {0CCFA519-E529-4AF9-B800-92FC96351EE9}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {C18C7214-AE56-46A5-8C62-8A5A2B8886D7}
+ EndGlobalSection
+EndGlobal
diff --git a/src/Program.cs b/src/Program.cs
new file mode 100644
index 0000000..4bc81fb
--- /dev/null
+++ b/src/Program.cs
@@ -0,0 +1,117 @@
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Linq;
+using CommandLine;
+
+namespace DistroGrubThemes
+{
+
+ internal class Program
+ {
+ string repoPath = string.Empty;
+ string iconsPath = string.Empty;
+ string customizePath = string.Empty;
+ string fontsPath = string.Empty;
+
+ static void Main(string[] args)
+ {
+ Parser.Default.ParseArguments(args).WithParsed(RunOptions).WithNotParsed(HandleParseError);
+ }
+
+ static void RunOptions(ProgramOptions opts)
+ {
+ Program program = new Program();
+
+ if (string.IsNullOrWhiteSpace(opts.ArchivedFiles))
+ {
+ program.UpdateAssets();
+ }
+
+ else if(opts.ArchivedFiles == "all")
+ {
+ Console.WriteLine("Correct");
+ }
+
+ else
+ {
+ Console.WriteLine("DistroGrubThemes 1.0.0");
+ Console.WriteLine("Copyright (C) 2021 Adison Cavani\n");
+ Console.WriteLine("ERROR(S): ");
+ Console.WriteLine($" Argument {opts.ArchivedFiles} is unknown.");
+ Console.WriteLine("\n -a, --archive\tTest\n");
+ }
+ }
+
+ static void HandleParseError(IEnumerable errs)
+ {
+ Environment.Exit(1);
+ }
+
+ void UpdateAssets()
+ {
+ Console.Write("Repository path: ");
+ CheckRepoPath(Console.ReadLine());
+
+ iconsPath = repoPath + @"\assets\icons";
+ customizePath = repoPath + @"\customize";
+ fontsPath = repoPath + @"\font";
+
+ UpdateIcons();
+ UpdateFonts();
+ }
+
+ void UpdateIcons()
+ {
+ var icons = FilesArray(iconsPath);
+
+ foreach (var directory in CustomDirectories())
+ {
+ foreach (var icon in icons)
+ {
+ File.Copy(iconsPath + @"\" + icon, directory + @"\icons\" + icon, true);
+ }
+ }
+ }
+
+ void UpdateFonts()
+ {
+ var fonts = FilesArray(fontsPath);
+
+ foreach (var directory in CustomDirectories())
+ {
+ foreach (var font in fonts)
+ {
+ File.Copy(fontsPath + @"\" + font, directory + @"\" + font, true);
+ }
+ }
+ }
+
+ List FilesArray(string folderPath)
+ {
+ return new List(Directory.GetFiles(folderPath).Select(Path.GetFileName));
+ }
+
+ string[] CustomDirectories()
+ {
+ return Directory.GetDirectories(customizePath);
+ }
+
+ void CheckRepoPath(string path)
+ {
+ if (Directory.Exists(path) && path.Contains("distro-grub-themes"))
+ {
+ int index = path.IndexOf("distro-grub-themes") + 18;
+ repoPath = path.Substring(0, index);
+ }
+
+ else
+ {
+ Console.ForegroundColor = ConsoleColor.Red;
+ Console.WriteLine("ERROR: Could not find repository in this path!");
+ Console.ResetColor();
+ Environment.Exit(1);
+ }
+ }
+ }
+}
diff --git a/src/ProgramOptions.cs b/src/ProgramOptions.cs
new file mode 100644
index 0000000..dc52d12
--- /dev/null
+++ b/src/ProgramOptions.cs
@@ -0,0 +1,10 @@
+using CommandLine;
+
+namespace DistroGrubThemes
+{
+ public class ProgramOptions
+ {
+ [Option('a', "archive", HelpText = "Create theme archive.")]
+ public string ArchivedFiles { get; set; }
+ }
+}
diff --git a/src/bin/Debug/netcoreapp3.1/CommandLine.dll b/src/bin/Debug/netcoreapp3.1/CommandLine.dll
new file mode 100644
index 0000000..af18229
Binary files /dev/null and b/src/bin/Debug/netcoreapp3.1/CommandLine.dll differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.deps.json b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.deps.json
new file mode 100644
index 0000000..609328f
--- /dev/null
+++ b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.deps.json
@@ -0,0 +1,57 @@
+{
+ "runtimeTarget": {
+ "name": ".NETCoreApp,Version=v3.1",
+ "signature": ""
+ },
+ "compilationOptions": {},
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "DistroGrubThemes/1.0.0": {
+ "dependencies": {
+ "CommandLineParser": "2.8.0",
+ "SharpZipLib": "1.3.3"
+ },
+ "runtime": {
+ "DistroGrubThemes.dll": {}
+ }
+ },
+ "CommandLineParser/2.8.0": {
+ "runtime": {
+ "lib/netstandard2.0/CommandLine.dll": {
+ "assemblyVersion": "2.8.0.0",
+ "fileVersion": "2.8.0.0"
+ }
+ }
+ },
+ "SharpZipLib/1.3.3": {
+ "runtime": {
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {
+ "assemblyVersion": "1.3.3.11",
+ "fileVersion": "1.3.3.11"
+ }
+ }
+ }
+ }
+ },
+ "libraries": {
+ "DistroGrubThemes/1.0.0": {
+ "type": "project",
+ "serviceable": false,
+ "sha512": ""
+ },
+ "CommandLineParser/2.8.0": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==",
+ "path": "commandlineparser/2.8.0",
+ "hashPath": "commandlineparser.2.8.0.nupkg.sha512"
+ },
+ "SharpZipLib/1.3.3": {
+ "type": "package",
+ "serviceable": true,
+ "sha512": "sha512-N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
+ "path": "sharpziplib/1.3.3",
+ "hashPath": "sharpziplib.1.3.3.nupkg.sha512"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.dll b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.dll
new file mode 100644
index 0000000..05f2cb1
Binary files /dev/null and b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.dll differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.exe b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.exe
new file mode 100644
index 0000000..3d45b58
Binary files /dev/null and b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.exe differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.pdb b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.pdb
new file mode 100644
index 0000000..2338310
Binary files /dev/null and b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.pdb differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.dev.json b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.dev.json
new file mode 100644
index 0000000..d5d4240
--- /dev/null
+++ b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.dev.json
@@ -0,0 +1,8 @@
+{
+ "runtimeOptions": {
+ "additionalProbingPaths": [
+ "C:\\Users\\Adison\\.dotnet\\store\\|arch|\\|tfm|",
+ "C:\\Users\\Adison\\.nuget\\packages"
+ ]
+ }
+}
\ No newline at end of file
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.json b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.json
new file mode 100644
index 0000000..bc456d7
--- /dev/null
+++ b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.json
@@ -0,0 +1,9 @@
+{
+ "runtimeOptions": {
+ "tfm": "netcoreapp3.1",
+ "framework": {
+ "name": "Microsoft.NETCore.App",
+ "version": "3.1.0"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll b/src/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll
new file mode 100644
index 0000000..8a74343
Binary files /dev/null and b/src/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll differ
diff --git a/src/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs b/src/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
new file mode 100644
index 0000000..ad8dfe1
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
@@ -0,0 +1,4 @@
+//
+using System;
+using System.Reflection;
+[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v3.1", FrameworkDisplayName = "")]
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfo.cs b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfo.cs
new file mode 100644
index 0000000..6c8f3ab
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfo.cs
@@ -0,0 +1,23 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+using System;
+using System.Reflection;
+
+[assembly: System.Reflection.AssemblyCompanyAttribute("Adison Cavani")]
+[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
+[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
+[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")]
+[assembly: System.Reflection.AssemblyProductAttribute("DistroGrubThemes")]
+[assembly: System.Reflection.AssemblyTitleAttribute("DistroGrubThemes")]
+[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
+
+// Generated by the MSBuild WriteCodeFragment class.
+
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfoInputs.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfoInputs.cache
new file mode 100644
index 0000000..c7538c0
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfoInputs.cache
@@ -0,0 +1 @@
+2e7069c1fe1d700ebb15efbd6263f365c01481f0
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig
new file mode 100644
index 0000000..9195ae2
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig
@@ -0,0 +1,3 @@
+is_global = true
+build_property.RootNamespace = DistroGrubThemes
+build_property.ProjectDir = C:\Users\Adison\repos\distro-grub-themes\src\
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.assets.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.assets.cache
new file mode 100644
index 0000000..53e1403
Binary files /dev/null and b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.assets.cache differ
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.AssemblyReference.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.AssemblyReference.cache
new file mode 100644
index 0000000..8cb0132
Binary files /dev/null and b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.AssemblyReference.cache differ
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.CoreCompileInputs.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.CoreCompileInputs.cache
new file mode 100644
index 0000000..3123672
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.CoreCompileInputs.cache
@@ -0,0 +1 @@
+6549facf873ee6885456dcfdc5d92e8b8e5709e4
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.FileListAbsolute.txt b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..8fdcd65
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.FileListAbsolute.txt
@@ -0,0 +1,31 @@
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\DistroGrubThemes.exe
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\DistroGrubThemes.deps.json
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\DistroGrubThemes.runtimeconfig.json
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\DistroGrubThemes.runtimeconfig.dev.json
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\DistroGrubThemes.dll
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\DistroGrubThemes.pdb
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.csproj.AssemblyReference.cache
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.AssemblyInfoInputs.cache
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.AssemblyInfo.cs
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.csproj.CoreCompileInputs.cache
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.dll
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.pdb
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\obj\Debug\netcoreapp3.1\DistroGrubThemes.genruntimeconfig.cache
+C:\Users\Adison\repos\distro-grub-themes\src\DistroGrubThemes\bin\Debug\netcoreapp3.1\CommandLine.dll
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\DistroGrubThemes.exe
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\DistroGrubThemes.deps.json
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\DistroGrubThemes.runtimeconfig.json
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\DistroGrubThemes.runtimeconfig.dev.json
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\DistroGrubThemes.dll
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\DistroGrubThemes.pdb
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\CommandLine.dll
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.csproj.AssemblyReference.cache
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.AssemblyInfoInputs.cache
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.AssemblyInfo.cs
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.csproj.CoreCompileInputs.cache
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.dll
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.pdb
+C:\Users\Adison\repos\distro-grub-themes\src\obj\Debug\netcoreapp3.1\DistroGrubThemes.genruntimeconfig.cache
+C:\Users\Adison\repos\distro-grub-themes\src\bin\Debug\netcoreapp3.1\ICSharpCode.SharpZipLib.dll
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.dll b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.dll
new file mode 100644
index 0000000..05f2cb1
Binary files /dev/null and b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.dll differ
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.genruntimeconfig.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.genruntimeconfig.cache
new file mode 100644
index 0000000..6d2a9ee
--- /dev/null
+++ b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.genruntimeconfig.cache
@@ -0,0 +1 @@
+f800a8d40bdfdb9aae9123a1d76281adf32f7de0
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.pdb b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.pdb
new file mode 100644
index 0000000..2338310
Binary files /dev/null and b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.pdb differ
diff --git a/src/obj/Debug/netcoreapp3.1/apphost.exe b/src/obj/Debug/netcoreapp3.1/apphost.exe
new file mode 100644
index 0000000..3d45b58
Binary files /dev/null and b/src/obj/Debug/netcoreapp3.1/apphost.exe differ
diff --git a/src/obj/DistroGrubThemes.csproj.nuget.dgspec.json b/src/obj/DistroGrubThemes.csproj.nuget.dgspec.json
new file mode 100644
index 0000000..6fc3c69
--- /dev/null
+++ b/src/obj/DistroGrubThemes.csproj.nuget.dgspec.json
@@ -0,0 +1,72 @@
+{
+ "format": 1,
+ "restore": {
+ "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj": {}
+ },
+ "projects": {
+ "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj",
+ "projectName": "DistroGrubThemes",
+ "projectPath": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj",
+ "packagesPath": "C:\\Users\\Adison\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\Adison\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "dependencies": {
+ "CommandLineParser": {
+ "target": "Package",
+ "version": "[2.8.0, )"
+ },
+ "SharpZipLib": {
+ "target": "Package",
+ "version": "[1.3.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-rc.1.21463.6\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/obj/DistroGrubThemes.csproj.nuget.g.props b/src/obj/DistroGrubThemes.csproj.nuget.g.props
new file mode 100644
index 0000000..4ab2a4c
--- /dev/null
+++ b/src/obj/DistroGrubThemes.csproj.nuget.g.props
@@ -0,0 +1,15 @@
+
+
+
+ True
+ NuGet
+ $(MSBuildThisFileDirectory)project.assets.json
+ $(UserProfile)\.nuget\packages\
+ C:\Users\Adison\.nuget\packages\
+ PackageReference
+ 6.0.0
+
+
+
+
+
\ No newline at end of file
diff --git a/src/obj/DistroGrubThemes.csproj.nuget.g.targets b/src/obj/DistroGrubThemes.csproj.nuget.g.targets
new file mode 100644
index 0000000..3dc06ef
--- /dev/null
+++ b/src/obj/DistroGrubThemes.csproj.nuget.g.targets
@@ -0,0 +1,2 @@
+
+
\ No newline at end of file
diff --git a/src/obj/project.assets.json b/src/obj/project.assets.json
new file mode 100644
index 0000000..6c3e26a
--- /dev/null
+++ b/src/obj/project.assets.json
@@ -0,0 +1,143 @@
+{
+ "version": 3,
+ "targets": {
+ ".NETCoreApp,Version=v3.1": {
+ "CommandLineParser/2.8.0": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.0/CommandLine.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.0/CommandLine.dll": {}
+ }
+ },
+ "SharpZipLib/1.3.3": {
+ "type": "package",
+ "compile": {
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {}
+ },
+ "runtime": {
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll": {}
+ }
+ }
+ }
+ },
+ "libraries": {
+ "CommandLineParser/2.8.0": {
+ "sha512": "eco2HlKQBY4Joz9odHigzGpVzv6pjsXnY5lziioMveQxr+i2Z7xYcIOMeZTgYiqnMtMAbXMXsVhrNfWO5vJS8Q==",
+ "type": "package",
+ "path": "commandlineparser/2.8.0",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "CommandLine20.png",
+ "License.md",
+ "README.md",
+ "commandlineparser.2.8.0.nupkg.sha512",
+ "commandlineparser.nuspec",
+ "lib/net40/CommandLine.dll",
+ "lib/net40/CommandLine.xml",
+ "lib/net45/CommandLine.dll",
+ "lib/net45/CommandLine.xml",
+ "lib/net461/CommandLine.dll",
+ "lib/net461/CommandLine.xml",
+ "lib/netstandard2.0/CommandLine.dll",
+ "lib/netstandard2.0/CommandLine.xml"
+ ]
+ },
+ "SharpZipLib/1.3.3": {
+ "sha512": "N8+hwhsKZm25tDJfWpBSW7EGhH/R7EMuiX+KJ4C4u+fCWVc1lJ5zg1u3S1RPPVYgTqhx/C3hxrqUpi6RwK5+Tg==",
+ "type": "package",
+ "path": "sharpziplib/1.3.3",
+ "files": [
+ ".nupkg.metadata",
+ ".signature.p7s",
+ "images/sharpziplib-nuget-256x256.png",
+ "lib/net45/ICSharpCode.SharpZipLib.dll",
+ "lib/net45/ICSharpCode.SharpZipLib.pdb",
+ "lib/net45/ICSharpCode.SharpZipLib.xml",
+ "lib/netstandard2.0/ICSharpCode.SharpZipLib.dll",
+ "lib/netstandard2.0/ICSharpCode.SharpZipLib.pdb",
+ "lib/netstandard2.0/ICSharpCode.SharpZipLib.xml",
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.dll",
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.pdb",
+ "lib/netstandard2.1/ICSharpCode.SharpZipLib.xml",
+ "sharpziplib.1.3.3.nupkg.sha512",
+ "sharpziplib.nuspec"
+ ]
+ }
+ },
+ "projectFileDependencyGroups": {
+ ".NETCoreApp,Version=v3.1": [
+ "CommandLineParser >= 2.8.0",
+ "SharpZipLib >= 1.3.3"
+ ]
+ },
+ "packageFolders": {
+ "C:\\Users\\Adison\\.nuget\\packages\\": {}
+ },
+ "project": {
+ "version": "1.0.0",
+ "restore": {
+ "projectUniqueName": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj",
+ "projectName": "DistroGrubThemes",
+ "projectPath": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj",
+ "packagesPath": "C:\\Users\\Adison\\.nuget\\packages\\",
+ "outputPath": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\obj\\",
+ "projectStyle": "PackageReference",
+ "configFilePaths": [
+ "C:\\Users\\Adison\\AppData\\Roaming\\NuGet\\NuGet.Config",
+ "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
+ ],
+ "originalTargetFrameworks": [
+ "netcoreapp3.1"
+ ],
+ "sources": {
+ "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {},
+ "https://api.nuget.org/v3/index.json": {}
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "projectReferences": {}
+ }
+ },
+ "warningProperties": {
+ "warnAsError": [
+ "NU1605"
+ ]
+ }
+ },
+ "frameworks": {
+ "netcoreapp3.1": {
+ "targetAlias": "netcoreapp3.1",
+ "dependencies": {
+ "CommandLineParser": {
+ "target": "Package",
+ "version": "[2.8.0, )"
+ },
+ "SharpZipLib": {
+ "target": "Package",
+ "version": "[1.3.3, )"
+ }
+ },
+ "imports": [
+ "net461",
+ "net462",
+ "net47",
+ "net471",
+ "net472",
+ "net48"
+ ],
+ "assetTargetFallback": true,
+ "warn": true,
+ "frameworkReferences": {
+ "Microsoft.NETCore.App": {
+ "privateAssets": "all"
+ }
+ },
+ "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.100-rc.1.21463.6\\RuntimeIdentifierGraph.json"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/obj/project.nuget.cache b/src/obj/project.nuget.cache
new file mode 100644
index 0000000..cf4d8db
--- /dev/null
+++ b/src/obj/project.nuget.cache
@@ -0,0 +1,11 @@
+{
+ "version": 2,
+ "dgSpecHash": "EFQj79zBatn2G/DjQrKpneAgO4U+UyxjBu8g0xxI6D4mt9u9ST/y4DY1pldywB4ZlulDJUCwCsydRgspdpt8/Q==",
+ "success": true,
+ "projectFilePath": "C:\\Users\\Adison\\repos\\distro-grub-themes\\src\\DistroGrubThemes.csproj",
+ "expectedPackageFiles": [
+ "C:\\Users\\Adison\\.nuget\\packages\\commandlineparser\\2.8.0\\commandlineparser.2.8.0.nupkg.sha512",
+ "C:\\Users\\Adison\\.nuget\\packages\\sharpziplib\\1.3.3\\sharpziplib.1.3.3.nupkg.sha512"
+ ],
+ "logs": []
+}
\ No newline at end of file