diff --git a/src/.vs/DistroGrubThemes/v17/.suo b/src/.vs/DistroGrubThemes/v17/.suo
deleted file mode 100644
index 315825d..0000000
Binary files a/src/.vs/DistroGrubThemes/v17/.suo and /dev/null differ
diff --git a/src/DistroGrubThemes.csproj b/src/DistroGrubThemes.csproj
deleted file mode 100644
index b132f8d..0000000
--- a/src/DistroGrubThemes.csproj
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- Exe
- netcoreapp3.1
- Adison Cavani
- Adison Cavani
-
-
-
-
-
-
-
-
diff --git a/src/DistroGrubThemes.sln b/src/DistroGrubThemes.sln
deleted file mode 100644
index ea76239..0000000
--- a/src/DistroGrubThemes.sln
+++ /dev/null
@@ -1,25 +0,0 @@
-
-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
deleted file mode 100644
index 4bc81fb..0000000
--- a/src/Program.cs
+++ /dev/null
@@ -1,117 +0,0 @@
-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
deleted file mode 100644
index dc52d12..0000000
--- a/src/ProgramOptions.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-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
deleted file mode 100644
index af18229..0000000
Binary files a/src/bin/Debug/netcoreapp3.1/CommandLine.dll and /dev/null differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.deps.json b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.deps.json
deleted file mode 100644
index 609328f..0000000
--- a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.deps.json
+++ /dev/null
@@ -1,57 +0,0 @@
-{
- "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
deleted file mode 100644
index 05f2cb1..0000000
Binary files a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.dll and /dev/null differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.exe b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.exe
deleted file mode 100644
index 3d45b58..0000000
Binary files a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.exe and /dev/null differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.pdb b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.pdb
deleted file mode 100644
index 2338310..0000000
Binary files a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.pdb and /dev/null differ
diff --git a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.dev.json b/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.dev.json
deleted file mode 100644
index d5d4240..0000000
--- a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.dev.json
+++ /dev/null
@@ -1,8 +0,0 @@
-{
- "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
deleted file mode 100644
index bc456d7..0000000
--- a/src/bin/Debug/netcoreapp3.1/DistroGrubThemes.runtimeconfig.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "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
deleted file mode 100644
index 8a74343..0000000
Binary files a/src/bin/Debug/netcoreapp3.1/ICSharpCode.SharpZipLib.dll and /dev/null 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
deleted file mode 100644
index ad8dfe1..0000000
--- a/src/obj/Debug/netcoreapp3.1/.NETCoreApp,Version=v3.1.AssemblyAttributes.cs
+++ /dev/null
@@ -1,4 +0,0 @@
-//
-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
deleted file mode 100644
index 6c8f3ab..0000000
--- a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfo.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-//------------------------------------------------------------------------------
-//
-// 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
deleted file mode 100644
index c7538c0..0000000
--- a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.AssemblyInfoInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-2e7069c1fe1d700ebb15efbd6263f365c01481f0
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig
deleted file mode 100644
index 9195ae2..0000000
--- a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.GeneratedMSBuildEditorConfig.editorconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-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
deleted file mode 100644
index 53e1403..0000000
Binary files a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.assets.cache and /dev/null differ
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.AssemblyReference.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.AssemblyReference.cache
deleted file mode 100644
index 8cb0132..0000000
Binary files a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.AssemblyReference.cache and /dev/null differ
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.CoreCompileInputs.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.CoreCompileInputs.cache
deleted file mode 100644
index 3123672..0000000
--- a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.CoreCompileInputs.cache
+++ /dev/null
@@ -1 +0,0 @@
-6549facf873ee6885456dcfdc5d92e8b8e5709e4
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.FileListAbsolute.txt b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.FileListAbsolute.txt
deleted file mode 100644
index 8fdcd65..0000000
--- a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.csproj.FileListAbsolute.txt
+++ /dev/null
@@ -1,31 +0,0 @@
-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
deleted file mode 100644
index 05f2cb1..0000000
Binary files a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.dll and /dev/null differ
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.genruntimeconfig.cache b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.genruntimeconfig.cache
deleted file mode 100644
index 6d2a9ee..0000000
--- a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.genruntimeconfig.cache
+++ /dev/null
@@ -1 +0,0 @@
-f800a8d40bdfdb9aae9123a1d76281adf32f7de0
diff --git a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.pdb b/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.pdb
deleted file mode 100644
index 2338310..0000000
Binary files a/src/obj/Debug/netcoreapp3.1/DistroGrubThemes.pdb and /dev/null differ
diff --git a/src/obj/Debug/netcoreapp3.1/apphost.exe b/src/obj/Debug/netcoreapp3.1/apphost.exe
deleted file mode 100644
index 3d45b58..0000000
Binary files a/src/obj/Debug/netcoreapp3.1/apphost.exe and /dev/null differ
diff --git a/src/obj/DistroGrubThemes.csproj.nuget.dgspec.json b/src/obj/DistroGrubThemes.csproj.nuget.dgspec.json
deleted file mode 100644
index 6fc3c69..0000000
--- a/src/obj/DistroGrubThemes.csproj.nuget.dgspec.json
+++ /dev/null
@@ -1,72 +0,0 @@
-{
- "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
deleted file mode 100644
index 4ab2a4c..0000000
--- a/src/obj/DistroGrubThemes.csproj.nuget.g.props
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
- 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
deleted file mode 100644
index 3dc06ef..0000000
--- a/src/obj/DistroGrubThemes.csproj.nuget.g.targets
+++ /dev/null
@@ -1,2 +0,0 @@
-
-
\ No newline at end of file
diff --git a/src/obj/project.assets.json b/src/obj/project.assets.json
deleted file mode 100644
index 6c3e26a..0000000
--- a/src/obj/project.assets.json
+++ /dev/null
@@ -1,143 +0,0 @@
-{
- "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
deleted file mode 100644
index cf4d8db..0000000
--- a/src/obj/project.nuget.cache
+++ /dev/null
@@ -1,11 +0,0 @@
-{
- "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