├── .gitignore ├── LICENSE ├── README.md ├── ScriptLoader.sln ├── ScriptLoader ├── ILRepack.targets ├── MonoCompiler.cs ├── Properties │ └── AssemblyInfo.cs ├── ScriptInfo.cs ├── ScriptLoader.cs ├── ScriptLoader.csproj ├── Utilities.cs └── packages.config └── lib ├── BepInEx.dll ├── UnityEngine.dll └── mcs.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/README.md -------------------------------------------------------------------------------- /ScriptLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader.sln -------------------------------------------------------------------------------- /ScriptLoader/ILRepack.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/ILRepack.targets -------------------------------------------------------------------------------- /ScriptLoader/MonoCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/MonoCompiler.cs -------------------------------------------------------------------------------- /ScriptLoader/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ScriptLoader/ScriptInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/ScriptInfo.cs -------------------------------------------------------------------------------- /ScriptLoader/ScriptLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/ScriptLoader.cs -------------------------------------------------------------------------------- /ScriptLoader/ScriptLoader.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/ScriptLoader.csproj -------------------------------------------------------------------------------- /ScriptLoader/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/Utilities.cs -------------------------------------------------------------------------------- /ScriptLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/ScriptLoader/packages.config -------------------------------------------------------------------------------- /lib/BepInEx.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/lib/BepInEx.dll -------------------------------------------------------------------------------- /lib/UnityEngine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/lib/UnityEngine.dll -------------------------------------------------------------------------------- /lib/mcs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ghorsington/BepInEx.ScriptLoader/HEAD/lib/mcs.dll --------------------------------------------------------------------------------