From 9b7ce04a44f24396594c432bb9df25a7b08b69cd Mon Sep 17 00:00:00 2001 From: Franklin Hiciano <105998129+a-pinch-ofsalt@users.noreply.github.com> Date: Sun, 27 Jul 2025 12:43:41 -0400 Subject: [PATCH 1/5] specified UAssetAPI version --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2fe11d1..bfc3741 100644 --- a/README.md +++ b/README.md @@ -32,11 +32,11 @@ private void AddEntryToInner(string infile) # Dependencies - [.NET Framework 4.8](https://dotnet.microsoft.com/download/dotnet-framework) -- [UAssetAPI](https://github.com/atenfyr/UAssetAPI) for Building +- [UAssetAPI](https://github.com/atenfyr/UAssetAPI), commit `be66982` for Building - UAsset/UExp Files from Code Vein # Building -1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) +1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) (use UAssetAPI commit `be66982`) 2. Open the QueenIO.sln in Visual Studio 3. Fix the UAssetAPI reference to where you unpack it if need be 4. Build the file by right clicking on the solution name in the Solition Explorer From ba22ea890ac980e2151660ea6c729b5a4c540a51 Mon Sep 17 00:00:00 2001 From: Franklin Hiciano <105998129+a-pinch-ofsalt@users.noreply.github.com> Date: Sun, 27 Jul 2025 12:48:31 -0400 Subject: [PATCH 2/5] Fix build instructions --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bfc3741..901f08c 100644 --- a/README.md +++ b/README.md @@ -38,8 +38,9 @@ private void AddEntryToInner(string infile) # Building 1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) (use UAssetAPI commit `be66982`) 2. Open the QueenIO.sln in Visual Studio -3. Fix the UAssetAPI reference to where you unpack it if need be -4. Build the file by right clicking on the solution name in the Solition Explorer +3. Rename the cloned `UAssetAPI` repository to `UAssetAPI-master` and put it under `C:\Programs`. Or, fix the UAssetAPI reference to where you unpack it +4. In `UAssetAPI-master\UAssetAPI\UAssetAPI.csproj`, change `` to `v4.8` +5. Build the file by right clicking on the solution name in the Solition Explorer # Credits [UAssetAPI](https://github.com/atenfyr/UAssetAPI) Really the Back bone to the whole thing by providing an easy to use uasset phraser. From ece024c05386d4b2c140a7a8af775438fecbc825 Mon Sep 17 00:00:00 2001 From: Franklin Hiciano <105998129+a-pinch-ofsalt@users.noreply.github.com> Date: Sun, 27 Jul 2025 12:57:03 -0400 Subject: [PATCH 3/5] updated wording --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 901f08c..7ddb387 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ private void AddEntryToInner(string infile) - UAsset/UExp Files from Code Vein # Building -1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) (use UAssetAPI commit `be66982`) +1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) (make sure to `git checkout be66982` in the UAssetAPI repository) 2. Open the QueenIO.sln in Visual Studio 3. Rename the cloned `UAssetAPI` repository to `UAssetAPI-master` and put it under `C:\Programs`. Or, fix the UAssetAPI reference to where you unpack it 4. In `UAssetAPI-master\UAssetAPI\UAssetAPI.csproj`, change `` to `v4.8` From 8a25e90dba4f7c5b62dad1604021a09fe24e71ae Mon Sep 17 00:00:00 2001 From: Franklin Hiciano <105998129+a-pinch-ofsalt@users.noreply.github.com> Date: Sun, 27 Jul 2025 13:01:00 -0400 Subject: [PATCH 4/5] clarified instructions --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7ddb387..1c9752d 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,12 @@ private void AddEntryToInner(string infile) - UAsset/UExp Files from Code Vein # Building -1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) (make sure to `git checkout be66982` in the UAssetAPI repository) -2. Open the QueenIO.sln in Visual Studio -3. Rename the cloned `UAssetAPI` repository to `UAssetAPI-master` and put it under `C:\Programs`. Or, fix the UAssetAPI reference to where you unpack it +1. Download both the Source code from QueenIO and [UAssetAPI](https://github.com/atenfyr/UAssetAPI) +2. Move UAssetAPI folder into `C:\Programs` and rename it `UAssetAPI-master`. Or fix the UAssetAPI reference to where you unpack it in Visual Studio, in later steps +3. Go into `UAssetAPI-master` and run `git checkout be66982` 4. In `UAssetAPI-master\UAssetAPI\UAssetAPI.csproj`, change `` to `v4.8` -5. Build the file by right clicking on the solution name in the Solition Explorer +5. Open the QueenIO.sln in Visual Studio +8. Build the file by right clicking on the solution name in the Solition Explorer # Credits [UAssetAPI](https://github.com/atenfyr/UAssetAPI) Really the Back bone to the whole thing by providing an easy to use uasset phraser. From c6b060c4973766fb759f5e6b7527db03753a7f56 Mon Sep 17 00:00:00 2001 From: Franklin Hiciano <105998129+a-pinch-ofsalt@users.noreply.github.com> Date: Sun, 27 Jul 2025 13:05:19 -0400 Subject: [PATCH 5/5] added changing .NET version instructions --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1c9752d..26d59d5 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,8 @@ private void AddEntryToInner(string infile) 3. Go into `UAssetAPI-master` and run `git checkout be66982` 4. In `UAssetAPI-master\UAssetAPI\UAssetAPI.csproj`, change `` to `v4.8` 5. Open the QueenIO.sln in Visual Studio +6. In Solution Explorer, right click UAssetAPI > Properties +7. Set `Target Framework` to `.NET Framework 4.8` 8. Build the file by right clicking on the solution name in the Solition Explorer # Credits