From ef6f19344a7175cc93cb0a046046596231eed11a Mon Sep 17 00:00:00 2001 From: gnomerd Date: Mon, 9 Dec 2019 13:47:01 +0100 Subject: [PATCH] Reformat file structure --- 2019/Day1/{ => Part1}/1.csproj | 0 2019/Day1/{ => Part1}/Program.cs | 0 .../{ => Part1}/bin/Debug/netcoreapp2.2/1.deps.json | 0 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.dll | Bin 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.pdb | Bin .../Debug/netcoreapp2.2/1.runtimeconfig.dev.json | 0 .../bin/Debug/netcoreapp2.2/1.runtimeconfig.json | 0 2019/Day1/{ => Part1}/input.txt | 0 2019/Day1/{ => Part1}/obj/1.csproj.nuget.cache | 0 .../Day1/{ => Part1}/obj/1.csproj.nuget.dgspec.json | 0 2019/Day1/{ => Part1}/obj/1.csproj.nuget.g.props | 0 2019/Day1/{ => Part1}/obj/1.csproj.nuget.g.targets | 0 .../obj/Debug/netcoreapp2.2/1.AssemblyInfo.cs | 0 .../Debug/netcoreapp2.2/1.AssemblyInfoInputs.cache | 0 .../obj/Debug/netcoreapp2.2/1.assets.cache | Bin .../netcoreapp2.2/1.csproj.CoreCompileInputs.cache | 0 .../netcoreapp2.2/1.csproj.FileListAbsolute.txt | 0 .../netcoreapp2.2/1.csprojAssemblyReference.cache | Bin 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.dll | Bin 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.pdb | Bin 2019/Day1/{ => Part1}/obj/project.assets.json | 0 21 files changed, 0 insertions(+), 0 deletions(-) rename 2019/Day1/{ => Part1}/1.csproj (100%) rename 2019/Day1/{ => Part1}/Program.cs (100%) rename 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.deps.json (100%) rename 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.dll (100%) rename 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.pdb (100%) rename 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.runtimeconfig.dev.json (100%) rename 2019/Day1/{ => Part1}/bin/Debug/netcoreapp2.2/1.runtimeconfig.json (100%) rename 2019/Day1/{ => Part1}/input.txt (100%) rename 2019/Day1/{ => Part1}/obj/1.csproj.nuget.cache (100%) rename 2019/Day1/{ => Part1}/obj/1.csproj.nuget.dgspec.json (100%) rename 2019/Day1/{ => Part1}/obj/1.csproj.nuget.g.props (100%) rename 2019/Day1/{ => Part1}/obj/1.csproj.nuget.g.targets (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.AssemblyInfo.cs (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.AssemblyInfoInputs.cache (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.assets.cache (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.csproj.CoreCompileInputs.cache (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.csproj.FileListAbsolute.txt (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.csprojAssemblyReference.cache (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.dll (100%) rename 2019/Day1/{ => Part1}/obj/Debug/netcoreapp2.2/1.pdb (100%) rename 2019/Day1/{ => Part1}/obj/project.assets.json (100%) diff --git a/2019/Day1/1.csproj b/2019/Day1/Part1/1.csproj similarity index 100% rename from 2019/Day1/1.csproj rename to 2019/Day1/Part1/1.csproj diff --git a/2019/Day1/Program.cs b/2019/Day1/Part1/Program.cs similarity index 100% rename from 2019/Day1/Program.cs rename to 2019/Day1/Part1/Program.cs diff --git a/2019/Day1/bin/Debug/netcoreapp2.2/1.deps.json b/2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.deps.json similarity index 100% rename from 2019/Day1/bin/Debug/netcoreapp2.2/1.deps.json rename to 2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.deps.json diff --git a/2019/Day1/bin/Debug/netcoreapp2.2/1.dll b/2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.dll similarity index 100% rename from 2019/Day1/bin/Debug/netcoreapp2.2/1.dll rename to 2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.dll diff --git a/2019/Day1/bin/Debug/netcoreapp2.2/1.pdb b/2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.pdb similarity index 100% rename from 2019/Day1/bin/Debug/netcoreapp2.2/1.pdb rename to 2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.pdb diff --git a/2019/Day1/bin/Debug/netcoreapp2.2/1.runtimeconfig.dev.json b/2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.runtimeconfig.dev.json similarity index 100% rename from 2019/Day1/bin/Debug/netcoreapp2.2/1.runtimeconfig.dev.json rename to 2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.runtimeconfig.dev.json diff --git a/2019/Day1/bin/Debug/netcoreapp2.2/1.runtimeconfig.json b/2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.runtimeconfig.json similarity index 100% rename from 2019/Day1/bin/Debug/netcoreapp2.2/1.runtimeconfig.json rename to 2019/Day1/Part1/bin/Debug/netcoreapp2.2/1.runtimeconfig.json diff --git a/2019/Day1/input.txt b/2019/Day1/Part1/input.txt similarity index 100% rename from 2019/Day1/input.txt rename to 2019/Day1/Part1/input.txt diff --git a/2019/Day1/obj/1.csproj.nuget.cache b/2019/Day1/Part1/obj/1.csproj.nuget.cache similarity index 100% rename from 2019/Day1/obj/1.csproj.nuget.cache rename to 2019/Day1/Part1/obj/1.csproj.nuget.cache diff --git a/2019/Day1/obj/1.csproj.nuget.dgspec.json b/2019/Day1/Part1/obj/1.csproj.nuget.dgspec.json similarity index 100% rename from 2019/Day1/obj/1.csproj.nuget.dgspec.json rename to 2019/Day1/Part1/obj/1.csproj.nuget.dgspec.json diff --git a/2019/Day1/obj/1.csproj.nuget.g.props b/2019/Day1/Part1/obj/1.csproj.nuget.g.props similarity index 100% rename from 2019/Day1/obj/1.csproj.nuget.g.props rename to 2019/Day1/Part1/obj/1.csproj.nuget.g.props diff --git a/2019/Day1/obj/1.csproj.nuget.g.targets b/2019/Day1/Part1/obj/1.csproj.nuget.g.targets similarity index 100% rename from 2019/Day1/obj/1.csproj.nuget.g.targets rename to 2019/Day1/Part1/obj/1.csproj.nuget.g.targets diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.AssemblyInfo.cs b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.AssemblyInfo.cs similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.AssemblyInfo.cs rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.AssemblyInfo.cs diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.AssemblyInfoInputs.cache b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.AssemblyInfoInputs.cache similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.AssemblyInfoInputs.cache rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.AssemblyInfoInputs.cache diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.assets.cache b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.assets.cache similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.assets.cache rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.assets.cache diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.csproj.CoreCompileInputs.cache b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.csproj.CoreCompileInputs.cache similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.csproj.CoreCompileInputs.cache rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.csproj.CoreCompileInputs.cache diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.csproj.FileListAbsolute.txt b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.csproj.FileListAbsolute.txt similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.csproj.FileListAbsolute.txt rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.csproj.FileListAbsolute.txt diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.csprojAssemblyReference.cache b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.csprojAssemblyReference.cache similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.csprojAssemblyReference.cache rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.csprojAssemblyReference.cache diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.dll b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.dll similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.dll rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.dll diff --git a/2019/Day1/obj/Debug/netcoreapp2.2/1.pdb b/2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.pdb similarity index 100% rename from 2019/Day1/obj/Debug/netcoreapp2.2/1.pdb rename to 2019/Day1/Part1/obj/Debug/netcoreapp2.2/1.pdb diff --git a/2019/Day1/obj/project.assets.json b/2019/Day1/Part1/obj/project.assets.json similarity index 100% rename from 2019/Day1/obj/project.assets.json rename to 2019/Day1/Part1/obj/project.assets.json