From 067c5cfbbccac8e7a64ff40541b966227f30ee99 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Thu, 27 Jun 2024 16:49:18 -0400 Subject: [PATCH] Move project to subfolder --- .github/workflows/build_nupkg.yml | 4 ++-- SabreTools.RedumpLib.sln | 2 +- .../Attributes}/AttributeHelper.cs | 0 .../Attributes}/HumanReadableAttribute.cs | 0 .../Attributes}/LanguageAttribute.cs | 0 .../Attributes}/SystemAttribute.cs | 0 Builder.cs => SabreTools.RedumpLib/Builder.cs | 0 .../Converters}/DiscCategoryConverter.cs | 0 .../Converters}/DiscTypeConverter.cs | 0 .../Converters}/LanguageConverter.cs | 0 .../Converters}/LanguageSelectionConverter.cs | 0 .../Converters}/RegionConverter.cs | 0 .../Converters}/SystemConverter.cs | 0 .../Converters}/YesNoConverter.cs | 0 {Data => SabreTools.RedumpLib/Data}/Constants.cs | 0 {Data => SabreTools.RedumpLib/Data}/Enumerations.cs | 0 {Data => SabreTools.RedumpLib/Data}/Extensions.cs | 0 {Data => SabreTools.RedumpLib/Data}/SubmissionInfo.cs | 0 {Data => SabreTools.RedumpLib/Data}/Template.cs | 0 Formatter.cs => SabreTools.RedumpLib/Formatter.cs | 0 OldDotNet.cs => SabreTools.RedumpLib/OldDotNet.cs | 0 .../SabreTools.RedumpLib.csproj | 2 +- Validator.cs => SabreTools.RedumpLib/Validator.cs | 0 {Web => SabreTools.RedumpLib/Web}/CookieWebClient.cs | 0 {Web => SabreTools.RedumpLib/Web}/RedumpClient.cs | 0 25 files changed, 4 insertions(+), 4 deletions(-) rename {Attributes => SabreTools.RedumpLib/Attributes}/AttributeHelper.cs (100%) rename {Attributes => SabreTools.RedumpLib/Attributes}/HumanReadableAttribute.cs (100%) rename {Attributes => SabreTools.RedumpLib/Attributes}/LanguageAttribute.cs (100%) rename {Attributes => SabreTools.RedumpLib/Attributes}/SystemAttribute.cs (100%) rename Builder.cs => SabreTools.RedumpLib/Builder.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/DiscCategoryConverter.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/DiscTypeConverter.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/LanguageConverter.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/LanguageSelectionConverter.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/RegionConverter.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/SystemConverter.cs (100%) rename {Converters => SabreTools.RedumpLib/Converters}/YesNoConverter.cs (100%) rename {Data => SabreTools.RedumpLib/Data}/Constants.cs (100%) rename {Data => SabreTools.RedumpLib/Data}/Enumerations.cs (100%) rename {Data => SabreTools.RedumpLib/Data}/Extensions.cs (100%) rename {Data => SabreTools.RedumpLib/Data}/SubmissionInfo.cs (100%) rename {Data => SabreTools.RedumpLib/Data}/Template.cs (100%) rename Formatter.cs => SabreTools.RedumpLib/Formatter.cs (100%) rename OldDotNet.cs => SabreTools.RedumpLib/OldDotNet.cs (100%) rename SabreTools.RedumpLib.csproj => SabreTools.RedumpLib/SabreTools.RedumpLib.csproj (96%) rename Validator.cs => SabreTools.RedumpLib/Validator.cs (100%) rename {Web => SabreTools.RedumpLib/Web}/CookieWebClient.cs (100%) rename {Web => SabreTools.RedumpLib/Web}/RedumpClient.cs (100%) diff --git a/.github/workflows/build_nupkg.yml b/.github/workflows/build_nupkg.yml index c52e9fb..9fffc64 100644 --- a/.github/workflows/build_nupkg.yml +++ b/.github/workflows/build_nupkg.yml @@ -28,13 +28,13 @@ jobs: uses: actions/upload-artifact@v4 with: name: 'Nuget Package' - path: 'bin/Release/*.nupkg' + path: 'SabreTools.RedumpLib/bin/Release/*.nupkg' - name: Upload to rolling uses: ncipollo/release-action@v1.14.0 with: allowUpdates: True - artifacts: 'bin/Release/*.nupkg' + artifacts: 'SabreTools.RedumpLib/bin/Release/*.nupkg' body: 'Last built commit: ${{ github.sha }}' name: 'Rolling Release' prerelease: True diff --git a/SabreTools.RedumpLib.sln b/SabreTools.RedumpLib.sln index bcc23ba..2f374ea 100644 --- a/SabreTools.RedumpLib.sln +++ b/SabreTools.RedumpLib.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.0.31903.59 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SabreTools.RedumpLib", "SabreTools.RedumpLib.csproj", "{235D3A36-CA69-4348-9EC4-649B27ACFBB8}" +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SabreTools.RedumpLib", "SabreTools.RedumpLib\SabreTools.RedumpLib.csproj", "{235D3A36-CA69-4348-9EC4-649B27ACFBB8}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution diff --git a/Attributes/AttributeHelper.cs b/SabreTools.RedumpLib/Attributes/AttributeHelper.cs similarity index 100% rename from Attributes/AttributeHelper.cs rename to SabreTools.RedumpLib/Attributes/AttributeHelper.cs diff --git a/Attributes/HumanReadableAttribute.cs b/SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs similarity index 100% rename from Attributes/HumanReadableAttribute.cs rename to SabreTools.RedumpLib/Attributes/HumanReadableAttribute.cs diff --git a/Attributes/LanguageAttribute.cs b/SabreTools.RedumpLib/Attributes/LanguageAttribute.cs similarity index 100% rename from Attributes/LanguageAttribute.cs rename to SabreTools.RedumpLib/Attributes/LanguageAttribute.cs diff --git a/Attributes/SystemAttribute.cs b/SabreTools.RedumpLib/Attributes/SystemAttribute.cs similarity index 100% rename from Attributes/SystemAttribute.cs rename to SabreTools.RedumpLib/Attributes/SystemAttribute.cs diff --git a/Builder.cs b/SabreTools.RedumpLib/Builder.cs similarity index 100% rename from Builder.cs rename to SabreTools.RedumpLib/Builder.cs diff --git a/Converters/DiscCategoryConverter.cs b/SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs similarity index 100% rename from Converters/DiscCategoryConverter.cs rename to SabreTools.RedumpLib/Converters/DiscCategoryConverter.cs diff --git a/Converters/DiscTypeConverter.cs b/SabreTools.RedumpLib/Converters/DiscTypeConverter.cs similarity index 100% rename from Converters/DiscTypeConverter.cs rename to SabreTools.RedumpLib/Converters/DiscTypeConverter.cs diff --git a/Converters/LanguageConverter.cs b/SabreTools.RedumpLib/Converters/LanguageConverter.cs similarity index 100% rename from Converters/LanguageConverter.cs rename to SabreTools.RedumpLib/Converters/LanguageConverter.cs diff --git a/Converters/LanguageSelectionConverter.cs b/SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs similarity index 100% rename from Converters/LanguageSelectionConverter.cs rename to SabreTools.RedumpLib/Converters/LanguageSelectionConverter.cs diff --git a/Converters/RegionConverter.cs b/SabreTools.RedumpLib/Converters/RegionConverter.cs similarity index 100% rename from Converters/RegionConverter.cs rename to SabreTools.RedumpLib/Converters/RegionConverter.cs diff --git a/Converters/SystemConverter.cs b/SabreTools.RedumpLib/Converters/SystemConverter.cs similarity index 100% rename from Converters/SystemConverter.cs rename to SabreTools.RedumpLib/Converters/SystemConverter.cs diff --git a/Converters/YesNoConverter.cs b/SabreTools.RedumpLib/Converters/YesNoConverter.cs similarity index 100% rename from Converters/YesNoConverter.cs rename to SabreTools.RedumpLib/Converters/YesNoConverter.cs diff --git a/Data/Constants.cs b/SabreTools.RedumpLib/Data/Constants.cs similarity index 100% rename from Data/Constants.cs rename to SabreTools.RedumpLib/Data/Constants.cs diff --git a/Data/Enumerations.cs b/SabreTools.RedumpLib/Data/Enumerations.cs similarity index 100% rename from Data/Enumerations.cs rename to SabreTools.RedumpLib/Data/Enumerations.cs diff --git a/Data/Extensions.cs b/SabreTools.RedumpLib/Data/Extensions.cs similarity index 100% rename from Data/Extensions.cs rename to SabreTools.RedumpLib/Data/Extensions.cs diff --git a/Data/SubmissionInfo.cs b/SabreTools.RedumpLib/Data/SubmissionInfo.cs similarity index 100% rename from Data/SubmissionInfo.cs rename to SabreTools.RedumpLib/Data/SubmissionInfo.cs diff --git a/Data/Template.cs b/SabreTools.RedumpLib/Data/Template.cs similarity index 100% rename from Data/Template.cs rename to SabreTools.RedumpLib/Data/Template.cs diff --git a/Formatter.cs b/SabreTools.RedumpLib/Formatter.cs similarity index 100% rename from Formatter.cs rename to SabreTools.RedumpLib/Formatter.cs diff --git a/OldDotNet.cs b/SabreTools.RedumpLib/OldDotNet.cs similarity index 100% rename from OldDotNet.cs rename to SabreTools.RedumpLib/OldDotNet.cs diff --git a/SabreTools.RedumpLib.csproj b/SabreTools.RedumpLib/SabreTools.RedumpLib.csproj similarity index 96% rename from SabreTools.RedumpLib.csproj rename to SabreTools.RedumpLib/SabreTools.RedumpLib.csproj index e91ba64..f9fce27 100644 --- a/SabreTools.RedumpLib.csproj +++ b/SabreTools.RedumpLib/SabreTools.RedumpLib.csproj @@ -22,7 +22,7 @@ - + diff --git a/Validator.cs b/SabreTools.RedumpLib/Validator.cs similarity index 100% rename from Validator.cs rename to SabreTools.RedumpLib/Validator.cs diff --git a/Web/CookieWebClient.cs b/SabreTools.RedumpLib/Web/CookieWebClient.cs similarity index 100% rename from Web/CookieWebClient.cs rename to SabreTools.RedumpLib/Web/CookieWebClient.cs diff --git a/Web/RedumpClient.cs b/SabreTools.RedumpLib/Web/RedumpClient.cs similarity index 100% rename from Web/RedumpClient.cs rename to SabreTools.RedumpLib/Web/RedumpClient.cs