SpookTubeEX/COMPILING.md

44 lines
886 B
Markdown
Raw Permalink Normal View History

2024-06-09 14:33:19 +10:00
# Compiling SpookTubeEX
2024-06-09 14:31:30 +10:00
This is a brief guide on how to compile the mod.
## 1. Environment
```powershell
$env:CONTENT_WARNING_DIR = "<PUT CW DIR HERE>"
```
## 2. Cloning
```powershell
git clone https://git.redbigz.com/SpookTube/SpookTubeEX
cd SpookTubeEX
```
## 3. Copying Assemblies
```powershell
Copy-Item "$env:CONTENT_WARNING_DIR\Content Warning_Data\Managed\*" ".\lib"
```
2024-06-09 14:33:07 +10:00
> ### Tip
2024-06-09 14:31:30 +10:00
> You only need these assemblies for the mod to compile successfully:
> - Assembly-CSharp.dll
> - Photon3Unity3D.dll
> - PhotonRealtime.dll
> - PhotonUnityNetworking.dll
> - Unity.Localization.dll
> - Unity.TextMeshPro.dll
> - UnityEngine.CoreModule.dll
> - UnityEngine.UI.dll
> - UnityEngine.dll
> - Zorro.Core.Runtime.dll
> - com.rlabrecque.steamworks.net.dll
> - websocket-sharp.dll
## 4. Restoring
```powershell
dotnet restore
```
## 5. Building
```powershell
2024-06-09 14:44:33 +10:00
dotnet build -c release
2024-06-09 14:31:30 +10:00
```