Change project name

This commit is contained in:
Michael Hinrichs 2024-06-01 16:39:19 -05:00
parent d4d2a52252
commit 914fe075f1
3 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@ using System.IO;
using System.IO.Compression; using System.IO.Compression;
using System.Collections.Generic; using System.Collections.Generic;
namespace Ragnarok_Online_Extractor namespace Ragnarok_Online_2_Extractor
{ {
class Program class Program
{ {
@ -13,7 +13,7 @@ namespace Ragnarok_Online_Extractor
{ {
br = new BinaryReader(File.OpenRead(args[0])); br = new BinaryReader(File.OpenRead(args[0]));
if (new string(br.ReadChars(8)) != "VDISK1.1") if (new string(br.ReadChars(8)) != "VDISK1.1")
throw new System.Exception("Not a Ragnarok Online VDK file."); throw new System.Exception("Not a Ragnarok Online 2 VDK file.");
path = Path.GetDirectoryName(args[0]) + "\\"; path = Path.GetDirectoryName(args[0]) + "\\";
int unknown1 = br.ReadInt32(); int unknown1 = br.ReadInt32();

View file

@ -3,7 +3,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
<RootNamespace>Ragnarok_Online_Extractor</RootNamespace> <RootNamespace>Ragnarok_Online_2_Extractor</RootNamespace>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View file

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 16
VisualStudioVersion = 16.0.34407.143 VisualStudioVersion = 16.0.34407.143
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ragnarok-Online-Extractor", "Ragnarok-Online-Extractor.csproj", "{4F5DD50B-1676-47E0-9236-11D1B2EE86EF}" Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Ragnarok-Online-2-Extractor", "Ragnarok-Online-2-Extractor.csproj", "{4F5DD50B-1676-47E0-9236-11D1B2EE86EF}"
EndProject EndProject
Global Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution GlobalSection(SolutionConfigurationPlatforms) = preSolution