├── .github └── workflows │ └── ci.yml ├── .gitignore ├── BepInEx.CatchUnityEventExceptions ├── BepInEx.CatchUnityEventExceptions.csproj ├── CatchUnityEventExceptionsPlugin.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.EnableFullScreenToggle ├── BepInEx.EnableFullScreenToggle.csproj ├── EnableFullScreenToggle.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.EnableResize ├── BepInEx.EnableResize.csproj ├── EnableResize.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.IMGUITextCursorFix ├── BepInEx.IMGUITextCursorFix.csproj ├── IMGUITextCursorFix.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.InputHotkeyBlock ├── BepInEx.InputHotkeyBlock.csproj ├── InputHotkeyBlock.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.MessageCenter ├── BepInEx.MessageCenter.csproj ├── MessageCenter.LogEntry.cs ├── MessageCenter.LogListener.cs ├── MessageCenter.ShadowAndOutline.cs ├── MessageCenter.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.MuteInBackground ├── BepInEx.MuteInBackground.csproj ├── MuteInBackground.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.OptimizeIMGUI ├── BepInEx.OptimizeIMGUI.csproj ├── OptimizeIMGUI.cs └── Properties │ └── AssemblyInfo.cs ├── BepInEx.ResourceUnloadOptimizations ├── BepInEx.ResourceUnloadOptimizations.csproj ├── MemoryInfo.cs ├── Properties │ └── AssemblyInfo.cs └── ResourceUnloadOptimizations.cs ├── BepInEx.SuppressGetTypesErrors ├── BepInEx.SuppressGetTypesErrorsPatcher.csproj ├── Properties │ └── AssemblyInfo.cs └── SuppressGetTypesErrorsPatcher.cs ├── BepInEx.Utility.sln ├── Directory.Build.props ├── LICENSE ├── README.md ├── nuget.config └── release.ps1 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/.gitignore -------------------------------------------------------------------------------- /BepInEx.CatchUnityEventExceptions/BepInEx.CatchUnityEventExceptions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.CatchUnityEventExceptions/BepInEx.CatchUnityEventExceptions.csproj -------------------------------------------------------------------------------- /BepInEx.CatchUnityEventExceptions/CatchUnityEventExceptionsPlugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.CatchUnityEventExceptions/CatchUnityEventExceptionsPlugin.cs -------------------------------------------------------------------------------- /BepInEx.CatchUnityEventExceptions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.CatchUnityEventExceptions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.EnableFullScreenToggle/BepInEx.EnableFullScreenToggle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.EnableFullScreenToggle/BepInEx.EnableFullScreenToggle.csproj -------------------------------------------------------------------------------- /BepInEx.EnableFullScreenToggle/EnableFullScreenToggle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.EnableFullScreenToggle/EnableFullScreenToggle.cs -------------------------------------------------------------------------------- /BepInEx.EnableFullScreenToggle/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.EnableFullScreenToggle/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.EnableResize/BepInEx.EnableResize.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.EnableResize/BepInEx.EnableResize.csproj -------------------------------------------------------------------------------- /BepInEx.EnableResize/EnableResize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.EnableResize/EnableResize.cs -------------------------------------------------------------------------------- /BepInEx.EnableResize/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.EnableResize/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.IMGUITextCursorFix/BepInEx.IMGUITextCursorFix.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.IMGUITextCursorFix/BepInEx.IMGUITextCursorFix.csproj -------------------------------------------------------------------------------- /BepInEx.IMGUITextCursorFix/IMGUITextCursorFix.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.IMGUITextCursorFix/IMGUITextCursorFix.cs -------------------------------------------------------------------------------- /BepInEx.IMGUITextCursorFix/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.IMGUITextCursorFix/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.InputHotkeyBlock/BepInEx.InputHotkeyBlock.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.InputHotkeyBlock/BepInEx.InputHotkeyBlock.csproj -------------------------------------------------------------------------------- /BepInEx.InputHotkeyBlock/InputHotkeyBlock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.InputHotkeyBlock/InputHotkeyBlock.cs -------------------------------------------------------------------------------- /BepInEx.InputHotkeyBlock/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.InputHotkeyBlock/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.MessageCenter/BepInEx.MessageCenter.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MessageCenter/BepInEx.MessageCenter.csproj -------------------------------------------------------------------------------- /BepInEx.MessageCenter/MessageCenter.LogEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MessageCenter/MessageCenter.LogEntry.cs -------------------------------------------------------------------------------- /BepInEx.MessageCenter/MessageCenter.LogListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MessageCenter/MessageCenter.LogListener.cs -------------------------------------------------------------------------------- /BepInEx.MessageCenter/MessageCenter.ShadowAndOutline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MessageCenter/MessageCenter.ShadowAndOutline.cs -------------------------------------------------------------------------------- /BepInEx.MessageCenter/MessageCenter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MessageCenter/MessageCenter.cs -------------------------------------------------------------------------------- /BepInEx.MessageCenter/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MessageCenter/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.MuteInBackground/BepInEx.MuteInBackground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MuteInBackground/BepInEx.MuteInBackground.csproj -------------------------------------------------------------------------------- /BepInEx.MuteInBackground/MuteInBackground.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MuteInBackground/MuteInBackground.cs -------------------------------------------------------------------------------- /BepInEx.MuteInBackground/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.MuteInBackground/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.OptimizeIMGUI/BepInEx.OptimizeIMGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.OptimizeIMGUI/BepInEx.OptimizeIMGUI.csproj -------------------------------------------------------------------------------- /BepInEx.OptimizeIMGUI/OptimizeIMGUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.OptimizeIMGUI/OptimizeIMGUI.cs -------------------------------------------------------------------------------- /BepInEx.OptimizeIMGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.OptimizeIMGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.ResourceUnloadOptimizations/BepInEx.ResourceUnloadOptimizations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.ResourceUnloadOptimizations/BepInEx.ResourceUnloadOptimizations.csproj -------------------------------------------------------------------------------- /BepInEx.ResourceUnloadOptimizations/MemoryInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.ResourceUnloadOptimizations/MemoryInfo.cs -------------------------------------------------------------------------------- /BepInEx.ResourceUnloadOptimizations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.ResourceUnloadOptimizations/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.ResourceUnloadOptimizations/ResourceUnloadOptimizations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.ResourceUnloadOptimizations/ResourceUnloadOptimizations.cs -------------------------------------------------------------------------------- /BepInEx.SuppressGetTypesErrors/BepInEx.SuppressGetTypesErrorsPatcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.SuppressGetTypesErrors/BepInEx.SuppressGetTypesErrorsPatcher.csproj -------------------------------------------------------------------------------- /BepInEx.SuppressGetTypesErrors/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.SuppressGetTypesErrors/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /BepInEx.SuppressGetTypesErrors/SuppressGetTypesErrorsPatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.SuppressGetTypesErrors/SuppressGetTypesErrorsPatcher.cs -------------------------------------------------------------------------------- /BepInEx.Utility.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/BepInEx.Utility.sln -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/README.md -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/nuget.config -------------------------------------------------------------------------------- /release.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BepInEx/BepInEx.Utility/HEAD/release.ps1 --------------------------------------------------------------------------------