From c351ce5a6d406087b1d290e0777d6c025c7e6255 Mon Sep 17 00:00:00 2001 From: Sinai <49360850+sinai-dev@users.noreply.github.com> Date: Mon, 31 Jan 2022 21:24:57 +1100 Subject: [PATCH 1/3] Remove Il2CppAssemblyUnhollower from build process --- .github/workflows/dotnet.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 3c4cdec..04fde3f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -28,9 +28,6 @@ jobs: nuget-api-key: ${{ secrets.NuGetAPIKey }} nuget-version: '5.x' - # Build Il2CppAssemblyUnhollower - - run: msbuild lib\Il2CppAssemblyUnhollower\UnhollowerBaseLib\UnhollowerBaseLib.csproj -t:Restore -t:Rebuild -p:Platform="AnyCPU" -p:Configuration=Release - # Build mcs - run: nuget restore lib\mcs-unity\mcs.sln - run: msbuild lib\mcs-unity\mcs\mcs.csproj -t:Restore -t:Rebuild -p:Platform="AnyCPU" -p:Configuration=Release From c90f339882b983bd3c149b0ef32b154fd96dcebd Mon Sep 17 00:00:00 2001 From: Sinai <49360850+sinai-dev@users.noreply.github.com> Date: Mon, 31 Jan 2022 21:29:10 +1100 Subject: [PATCH 2/3] Update dotnet.yml --- .github/workflows/dotnet.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 04fde3f..35b4fcf 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -34,7 +34,8 @@ jobs: # Build UnityExplorer releases, and upload artifacts - - run: nuget restore src\UnityExplorer.sln + - run: dotnet nuget add source https://nuget.bepinex.dev/v3/index.json + - run: dotnet restore src\UnityExplorer.sln # BepInEx Il2Cpp - run: msbuild src\UnityExplorer.csproj -t:Rebuild -p:Platform="AnyCPU" -p:Configuration=Release_BIE_Cpp From 798b881dcb52eaf469465cca2ff2945c702d4dce Mon Sep 17 00:00:00 2001 From: Sinai <49360850+sinai-dev@users.noreply.github.com> Date: Mon, 31 Jan 2022 21:31:18 +1100 Subject: [PATCH 3/3] Update dotnet.yml --- .github/workflows/dotnet.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 35b4fcf..f35c12f 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -35,7 +35,7 @@ jobs: # Build UnityExplorer releases, and upload artifacts - run: dotnet nuget add source https://nuget.bepinex.dev/v3/index.json - - run: dotnet restore src\UnityExplorer.sln + - run: nuget restore src\UnityExplorer.sln # BepInEx Il2Cpp - run: msbuild src\UnityExplorer.csproj -t:Rebuild -p:Platform="AnyCPU" -p:Configuration=Release_BIE_Cpp