Skip to content

Commit

Permalink
Rename solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Nenkai committed Aug 25, 2021
1 parent e91831c commit 4156be5
Show file tree
Hide file tree
Showing 12 changed files with 13 additions and 21 deletions.
8 changes: 0 additions & 8 deletions GTPSPUnpacker/Properties/launchSettings.json

This file was deleted.

2 changes: 1 addition & 1 deletion GTPSPUnpacker.sln → GTPSPVolTools.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.31515.178
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GTPSPUnpacker", "GTPSPUnpacker\GTPSPUnpacker.csproj", "{635F7BAF-FCAE-4EB7-B2B1-ED8BC060D64C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "GTPSPVolTools", "GTPSPVolTools\GTPSPVolTools.csproj", "{635F7BAF-FCAE-4EB7-B2B1-ED8BC060D64C}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PDTools.Utils", "PDTools.Utils\PDTools.Utils.csproj", "{2E93D12A-139B-46B8-BED3-294E714C6D6A}"
EndProject
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

using System.Security.Cryptography;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
public class Compression
{
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

using PDTools.Utils;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
class IndexEntry
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using PDTools.Utils;

namespace GTPSPUnpacker.Packing
namespace GTPSPVolTools.Packing
{
public class IndexWriter
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

using PDTools.Utils;

namespace GTPSPUnpacker.Packing
namespace GTPSPVolTools.Packing
{
public class VolumeBuilder
{
Expand Down
6 changes: 3 additions & 3 deletions GTPSPUnpacker/Program.cs → GTPSPVolTools/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
using System.Collections;
using System.Collections.Generic;

using GTPSPUnpacker.Packing;
using GTPSPVolTools.Packing;
using PDTools.Utils;

using CommandLine;
using CommandLine.Text;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("GTPSPUnpacker by Nenkai#9075");
Console.WriteLine("GTPSPVolTools by Nenkai#9075");
Console.WriteLine();

Parser.Default.ParseArguments<PackVerbs, UnpackVerbs>(args)
Expand Down
2 changes: 1 addition & 1 deletion GTPSPUnpacker/Utils.cs → GTPSPVolTools/Utils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Syroot.BinaryData.Core;
using Syroot.BinaryData.Memory;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
public static class Utils
{
Expand Down
4 changes: 2 additions & 2 deletions GTPSPUnpacker/Volume.cs → GTPSPVolTools/Volume.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

using PDTools.Utils;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
public class Volume
{
Expand Down Expand Up @@ -319,7 +319,7 @@ public void UnpackAll(string outputDir)

using (var sw = new StreamWriter(Path.Combine(outputDir, "files.txt")))
{
sw.WriteLine("Generated with GTPSPUnpacker by Nenkai#9075");
sw.WriteLine("Generated with GTPSPVolTools by Nenkai#9075");
sw.WriteLine($"Files: {_files.Count}");
sw.WriteLine();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

using System.Runtime.InteropServices;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
public class VolumeCrypto
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

using PDTools.Utils;

namespace GTPSPUnpacker
namespace GTPSPVolTools
{
public class VolumeEntry
{
Expand Down

0 comments on commit 4156be5

Please sign in to comment.