From d80405d7c09b3285e31b03c009924a85e694a521 Mon Sep 17 00:00:00 2001 From: Hanz Date: Mon, 18 Aug 2025 13:53:08 -0500 Subject: [PATCH 1/5] gitconfig should be gitattributes, my bad --- .gitattributes | 1 + .gitconfig | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 .gitattributes delete mode 100644 .gitconfig diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..0c42f3c --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=crlf diff --git a/.gitconfig b/.gitconfig deleted file mode 100644 index c541767..0000000 --- a/.gitconfig +++ /dev/null @@ -1 +0,0 @@ -*.{cs,csproj,sln} text=auto eol=crlf From 84bd61c4e2122fe1532f7d5a865c09edb7ff4699 Mon Sep 17 00:00:00 2001 From: Hanz Date: Mon, 18 Aug 2025 14:24:16 -0500 Subject: [PATCH 2/5] normalize line endings to crlf, remove bom, add editorconfig --- .editorconfig | 16 ++ archived/ml_aci/Main.cs | 2 +- archived/ml_aci/Properties/AssemblyInfo.cs | 2 +- archived/ml_aci/ml_aci.csproj | 2 +- archived/ml_aci/ml_aci.csproj.user | 2 +- archived/ml_dht/DataParser.cs | 2 +- archived/ml_dht/GameEvents.cs | 2 +- archived/ml_dht/HeadTracked.cs | 2 +- archived/ml_dht/MemoryMapReader.cs | 2 +- archived/ml_dht/Properties/AssemblyInfo.cs | 2 +- archived/ml_dht/ResourcesHandler.cs | 2 +- archived/ml_dht/TrackingData.cs | 2 +- archived/ml_dht/Utils.cs | 2 +- archived/ml_dht/resources/mod_menu.js | 2 +- archived/ml_drs/Main.cs | 2 +- archived/ml_drs/Properties/AssemblyInfo.cs | 2 +- archived/ml_egn/Main.cs | 2 +- archived/ml_egn/Properties/AssemblyInfo.cs | 2 +- archived/ml_egn/Utils.cs | 2 +- archived/ml_fpt/Main.cs | 2 +- archived/ml_fpt/Properties/AssemblyInfo.cs | 2 +- archived/ml_fpt/Scripts.cs | 2 +- archived/ml_fpt/ml_fpt.csproj | 2 +- archived/ml_fpt/ml_fpt.csproj.user | 2 +- archived/ml_fpt/resources/menu.js | 2 +- archived/ml_gmf/Fixes/AnimationOverrides.cs | 2 +- archived/ml_gmf/Fixes/AvatarOverrides.cs | 2 +- archived/ml_gmf/Fixes/PostProccesVolumes.cs | 2 +- archived/ml_gmf/Fixes/ViveControls.cs | 2 +- archived/ml_gmf/Main.cs | 2 +- archived/ml_gmf/Properties/AssemblyInfo.cs | 2 +- archived/ml_sci/Main.cs | 2 +- archived/ml_sci/Properties/AssemblyInfo.cs | 2 +- archived/ml_sci/ml_sci.csproj | 2 +- archived/ml_sci/ml_sci.csproj.user | 2 +- archived/ml_vet/Main.cs | 2 +- archived/ml_vet/Properties/AssemblyInfo.cs | 2 +- archived/ml_vet/ResourcesHandler.cs | 2 +- archived/ml_vet/Settings.cs | 2 +- archived/ml_vet/Utils.cs | 2 +- archived/ml_vet/resources/mod_menu.js | 2 +- ml_amt/Properties/AssemblyInfo.cs | 2 +- ml_asl/Properties/AssemblyInfo.cs | 2 +- ml_bft/Properties/AssemblyInfo.cs | 2 +- ml_lme/Properties/AssemblyInfo.cs | 2 +- ml_mods_cvr.sln | 2 +- ml_pah/Properties/AssemblyInfo.cs | 2 +- ml_pam/Properties/AssemblyInfo.cs | 2 +- ml_pin/Properties/AssemblyInfo.cs | 2 +- ml_pmc/Properties/AssemblyInfo.cs | 2 +- ml_ppu/Properties/AssemblyInfo.cs | 2 +- ml_prm/Properties/AssemblyInfo.cs | 2 +- ml_prm/ml_prm.csproj | 184 ++++++++++---------- ml_vei/Properties/AssemblyInfo.cs | 2 +- ml_vpc/Properties/AssemblyInfo.cs | 2 +- 55 files changed, 161 insertions(+), 145 deletions(-) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 0000000..030cdb8 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,16 @@ +root = true + +[*] +charset = utf-8 +end_of_line = crlf +indent_size = 4 +indent_style = space +trim_trailing_whitespace = true + +[*.csproj] +indent_size = 2 +indent_style = space + +[*.props] +indent_size = 2 +indent_style = space diff --git a/archived/ml_aci/Main.cs b/archived/ml_aci/Main.cs index cc8711a..4415a38 100644 --- a/archived/ml_aci/Main.cs +++ b/archived/ml_aci/Main.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.EventSystem; +using ABI_RC.Core.EventSystem; using ABI_RC.Core.InteractionSystem; using ABI_RC.Core.Networking; using ABI_RC.Core.Util; diff --git a/archived/ml_aci/Properties/AssemblyInfo.cs b/archived/ml_aci/Properties/AssemblyInfo.cs index fbd14c8..99952f4 100644 --- a/archived/ml_aci/Properties/AssemblyInfo.cs +++ b/archived/ml_aci/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; [assembly: AssemblyTitle("AvatarChangeInfo")] [assembly: AssemblyVersion("1.0.3")] diff --git a/archived/ml_aci/ml_aci.csproj b/archived/ml_aci/ml_aci.csproj index 25e1641..63843df 100644 --- a/archived/ml_aci/ml_aci.csproj +++ b/archived/ml_aci/ml_aci.csproj @@ -1,4 +1,4 @@ - + diff --git a/archived/ml_aci/ml_aci.csproj.user b/archived/ml_aci/ml_aci.csproj.user index 2539084..4e07504 100644 --- a/archived/ml_aci/ml_aci.csproj.user +++ b/archived/ml_aci/ml_aci.csproj.user @@ -1,4 +1,4 @@ - + C:\Games\Steam\common\ChilloutVR\MelonLoader\;C:\Games\Steam\common\ChilloutVR\ChilloutVR_Data\Managed\ diff --git a/archived/ml_dht/DataParser.cs b/archived/ml_dht/DataParser.cs index a1844ed..0796212 100644 --- a/archived/ml_dht/DataParser.cs +++ b/archived/ml_dht/DataParser.cs @@ -1,4 +1,4 @@ -namespace ml_dht +namespace ml_dht { class DataParser { diff --git a/archived/ml_dht/GameEvents.cs b/archived/ml_dht/GameEvents.cs index 03f2d3d..14465f4 100644 --- a/archived/ml_dht/GameEvents.cs +++ b/archived/ml_dht/GameEvents.cs @@ -1,4 +1,4 @@ -using ABI.CCK.Components; +using ABI.CCK.Components; using ABI_RC.Core.Player; using ABI_RC.Core.Player.EyeMovement; using ABI_RC.Systems.IK; diff --git a/archived/ml_dht/HeadTracked.cs b/archived/ml_dht/HeadTracked.cs index 858241d..4ab78fb 100644 --- a/archived/ml_dht/HeadTracked.cs +++ b/archived/ml_dht/HeadTracked.cs @@ -1,4 +1,4 @@ -using ABI.CCK.Components; +using ABI.CCK.Components; using ABI_RC.Core.Player; using ABI_RC.Core.Player.EyeMovement; using ABI_RC.Systems.FaceTracking; diff --git a/archived/ml_dht/MemoryMapReader.cs b/archived/ml_dht/MemoryMapReader.cs index 7949072..f009def 100644 --- a/archived/ml_dht/MemoryMapReader.cs +++ b/archived/ml_dht/MemoryMapReader.cs @@ -1,4 +1,4 @@ -using System.IO; +using System.IO; using System.IO.MemoryMappedFiles; namespace ml_dht diff --git a/archived/ml_dht/Properties/AssemblyInfo.cs b/archived/ml_dht/Properties/AssemblyInfo.cs index 9013c5f..b526c31 100644 --- a/archived/ml_dht/Properties/AssemblyInfo.cs +++ b/archived/ml_dht/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_dht.DesktopHeadTracking), "DesktopHeadTracking", "1.3.4", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_dht.DesktopHeadTracking), "DesktopHeadTracking", "1.3.4", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] \ No newline at end of file diff --git a/archived/ml_dht/ResourcesHandler.cs b/archived/ml_dht/ResourcesHandler.cs index 3c9b578..3275109 100644 --- a/archived/ml_dht/ResourcesHandler.cs +++ b/archived/ml_dht/ResourcesHandler.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; using System.Reflection; diff --git a/archived/ml_dht/TrackingData.cs b/archived/ml_dht/TrackingData.cs index 45a881c..2a4dd5d 100644 --- a/archived/ml_dht/TrackingData.cs +++ b/archived/ml_dht/TrackingData.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.Runtime.InteropServices; struct TrackingData diff --git a/archived/ml_dht/Utils.cs b/archived/ml_dht/Utils.cs index 1b5331b..902614a 100644 --- a/archived/ml_dht/Utils.cs +++ b/archived/ml_dht/Utils.cs @@ -1,4 +1,4 @@ -using ABI.CCK.Components; +using ABI.CCK.Components; using ABI_RC.Core.Savior; using ABI_RC.Core.UI; using System.Reflection; diff --git a/archived/ml_dht/resources/mod_menu.js b/archived/ml_dht/resources/mod_menu.js index e52b0ff..d72aeeb 100644 --- a/archived/ml_dht/resources/mod_menu.js +++ b/archived/ml_dht/resources/mod_menu.js @@ -1,4 +1,4 @@ -// Add own menu +// Add own menu { let l_block = document.createElement('div'); l_block.innerHTML = ` diff --git a/archived/ml_drs/Main.cs b/archived/ml_drs/Main.cs index 8af1eb9..9345985 100644 --- a/archived/ml_drs/Main.cs +++ b/archived/ml_drs/Main.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.UI; +using ABI_RC.Core.UI; using UnityEngine; namespace ml_drs diff --git a/archived/ml_drs/Properties/AssemblyInfo.cs b/archived/ml_drs/Properties/AssemblyInfo.cs index 627e372..5125c6e 100644 --- a/archived/ml_drs/Properties/AssemblyInfo.cs +++ b/archived/ml_drs/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_drs.DesktopReticleSwitch), "DesktopReticleSwitch", "1.0.1", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_drs.DesktopReticleSwitch), "DesktopReticleSwitch", "1.0.1", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/archived/ml_egn/Main.cs b/archived/ml_egn/Main.cs index 90d54a2..99a27c0 100644 --- a/archived/ml_egn/Main.cs +++ b/archived/ml_egn/Main.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.EventSystem; +using ABI_RC.Core.EventSystem; using ABI_RC.Core.IO; using ABI_RC.Core.Networking; using ABI_RC.Core.Util; diff --git a/archived/ml_egn/Properties/AssemblyInfo.cs b/archived/ml_egn/Properties/AssemblyInfo.cs index 5b1b103..7f999b6 100644 --- a/archived/ml_egn/Properties/AssemblyInfo.cs +++ b/archived/ml_egn/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_egn.ExtendedGameNotifications), "ExtendedGameNotifications", "1.0.3", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_egn.ExtendedGameNotifications), "ExtendedGameNotifications", "1.0.3", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/archived/ml_egn/Utils.cs b/archived/ml_egn/Utils.cs index 319e7ac..cc9ed57 100644 --- a/archived/ml_egn/Utils.cs +++ b/archived/ml_egn/Utils.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.InteractionSystem; +using ABI_RC.Core.InteractionSystem; using ABI_RC.Core.Networking; using ABI_RC.Core.Savior; using ABI_RC.Core.UI; diff --git a/archived/ml_fpt/Main.cs b/archived/ml_fpt/Main.cs index f748e3a..84e8bed 100644 --- a/archived/ml_fpt/Main.cs +++ b/archived/ml_fpt/Main.cs @@ -1,4 +1,4 @@ -using ABI.CCK.Scripts; +using ABI.CCK.Scripts; using ABI_RC.Core.InteractionSystem; using ABI_RC.Core.Player; using ABI_RC.Core.Savior; diff --git a/archived/ml_fpt/Properties/AssemblyInfo.cs b/archived/ml_fpt/Properties/AssemblyInfo.cs index 388da0e..9602b02 100644 --- a/archived/ml_fpt/Properties/AssemblyInfo.cs +++ b/archived/ml_fpt/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; [assembly: AssemblyTitle("FourPointTracking")] [assembly: AssemblyVersion("1.0.9")] diff --git a/archived/ml_fpt/Scripts.cs b/archived/ml_fpt/Scripts.cs index a0b5f81..6bf556c 100644 --- a/archived/ml_fpt/Scripts.cs +++ b/archived/ml_fpt/Scripts.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; using System.Reflection; diff --git a/archived/ml_fpt/ml_fpt.csproj b/archived/ml_fpt/ml_fpt.csproj index 77ebda4..a79a827 100644 --- a/archived/ml_fpt/ml_fpt.csproj +++ b/archived/ml_fpt/ml_fpt.csproj @@ -1,4 +1,4 @@ - + diff --git a/archived/ml_fpt/ml_fpt.csproj.user b/archived/ml_fpt/ml_fpt.csproj.user index 2539084..4e07504 100644 --- a/archived/ml_fpt/ml_fpt.csproj.user +++ b/archived/ml_fpt/ml_fpt.csproj.user @@ -1,4 +1,4 @@ - + C:\Games\Steam\common\ChilloutVR\MelonLoader\;C:\Games\Steam\common\ChilloutVR\ChilloutVR_Data\Managed\ diff --git a/archived/ml_fpt/resources/menu.js b/archived/ml_fpt/resources/menu.js index ee02114..e460691 100644 --- a/archived/ml_fpt/resources/menu.js +++ b/archived/ml_fpt/resources/menu.js @@ -1,4 +1,4 @@ -{ +{ let l_block = document.createElement('div'); l_block.innerHTML = `
diff --git a/archived/ml_gmf/Fixes/AnimationOverrides.cs b/archived/ml_gmf/Fixes/AnimationOverrides.cs index 925ff4d..3e65f9b 100644 --- a/archived/ml_gmf/Fixes/AnimationOverrides.cs +++ b/archived/ml_gmf/Fixes/AnimationOverrides.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core; +using ABI_RC.Core; using System; using System.Reflection; diff --git a/archived/ml_gmf/Fixes/AvatarOverrides.cs b/archived/ml_gmf/Fixes/AvatarOverrides.cs index cadb73b..04daa0e 100644 --- a/archived/ml_gmf/Fixes/AvatarOverrides.cs +++ b/archived/ml_gmf/Fixes/AvatarOverrides.cs @@ -1,4 +1,4 @@ -using ABI.CCK.Components; +using ABI.CCK.Components; using ABI_RC.Core.Player; using System; using System.Reflection; diff --git a/archived/ml_gmf/Fixes/PostProccesVolumes.cs b/archived/ml_gmf/Fixes/PostProccesVolumes.cs index 93fa38e..1f4c102 100644 --- a/archived/ml_gmf/Fixes/PostProccesVolumes.cs +++ b/archived/ml_gmf/Fixes/PostProccesVolumes.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.Player; +using ABI_RC.Core.Player; using System.Collections; namespace ml_gmf.Fixes diff --git a/archived/ml_gmf/Fixes/ViveControls.cs b/archived/ml_gmf/Fixes/ViveControls.cs index f4b229c..1ec1b39 100644 --- a/archived/ml_gmf/Fixes/ViveControls.cs +++ b/archived/ml_gmf/Fixes/ViveControls.cs @@ -1,4 +1,4 @@ -using ABI_RC.Systems.InputManagement; +using ABI_RC.Systems.InputManagement; using ABI_RC.Systems.InputManagement.XR; using System; using System.Reflection; diff --git a/archived/ml_gmf/Main.cs b/archived/ml_gmf/Main.cs index 4826a2c..a89b1c2 100644 --- a/archived/ml_gmf/Main.cs +++ b/archived/ml_gmf/Main.cs @@ -1,4 +1,4 @@ -namespace ml_gmf +namespace ml_gmf { public class GameMainFixes : MelonLoader.MelonMod { diff --git a/archived/ml_gmf/Properties/AssemblyInfo.cs b/archived/ml_gmf/Properties/AssemblyInfo.cs index 9fa7d85..c999bc2 100644 --- a/archived/ml_gmf/Properties/AssemblyInfo.cs +++ b/archived/ml_gmf/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_gmf.GameMainFixes), "GameMainFixes", "1.0.0", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_gmf.GameMainFixes), "GameMainFixes", "1.0.0", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/archived/ml_sci/Main.cs b/archived/ml_sci/Main.cs index 7aa4468..d213ef8 100644 --- a/archived/ml_sci/Main.cs +++ b/archived/ml_sci/Main.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.UI; +using ABI_RC.Core.UI; using DarkRift.Client; using System.Reflection; diff --git a/archived/ml_sci/Properties/AssemblyInfo.cs b/archived/ml_sci/Properties/AssemblyInfo.cs index c15c663..86401e4 100644 --- a/archived/ml_sci/Properties/AssemblyInfo.cs +++ b/archived/ml_sci/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -using System.Reflection; +using System.Reflection; [assembly: AssemblyTitle("ServerConnectionInfo")] [assembly: AssemblyVersion("1.0.2")] diff --git a/archived/ml_sci/ml_sci.csproj b/archived/ml_sci/ml_sci.csproj index 1e71c50..58a770c 100644 --- a/archived/ml_sci/ml_sci.csproj +++ b/archived/ml_sci/ml_sci.csproj @@ -1,4 +1,4 @@ - + diff --git a/archived/ml_sci/ml_sci.csproj.user b/archived/ml_sci/ml_sci.csproj.user index 2539084..4e07504 100644 --- a/archived/ml_sci/ml_sci.csproj.user +++ b/archived/ml_sci/ml_sci.csproj.user @@ -1,4 +1,4 @@ - + C:\Games\Steam\common\ChilloutVR\MelonLoader\;C:\Games\Steam\common\ChilloutVR\ChilloutVR_Data\Managed\ diff --git a/archived/ml_vet/Main.cs b/archived/ml_vet/Main.cs index 6ba63aa..742cc49 100644 --- a/archived/ml_vet/Main.cs +++ b/archived/ml_vet/Main.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core; +using ABI_RC.Core; using ABI_RC.Core.Player; using ABI_RC.Core.Player.EyeMovement; using ABI_RC.Core.Savior; diff --git a/archived/ml_vet/Properties/AssemblyInfo.cs b/archived/ml_vet/Properties/AssemblyInfo.cs index 9918aec..34e2814 100644 --- a/archived/ml_vet/Properties/AssemblyInfo.cs +++ b/archived/ml_vet/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_vet.ViveEyeTracking), "ViveEyeTracking", "1.0.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_vet.ViveEyeTracking), "ViveEyeTracking", "1.0.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/archived/ml_vet/ResourcesHandler.cs b/archived/ml_vet/ResourcesHandler.cs index 9651d2e..d7bc951 100644 --- a/archived/ml_vet/ResourcesHandler.cs +++ b/archived/ml_vet/ResourcesHandler.cs @@ -1,4 +1,4 @@ -using System; +using System; using System.IO; using System.Reflection; diff --git a/archived/ml_vet/Settings.cs b/archived/ml_vet/Settings.cs index 63b680a..21140b2 100644 --- a/archived/ml_vet/Settings.cs +++ b/archived/ml_vet/Settings.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.InteractionSystem; +using ABI_RC.Core.InteractionSystem; using System; using System.Collections.Generic; diff --git a/archived/ml_vet/Utils.cs b/archived/ml_vet/Utils.cs index 63e658c..7c6cc29 100644 --- a/archived/ml_vet/Utils.cs +++ b/archived/ml_vet/Utils.cs @@ -1,4 +1,4 @@ -using ABI_RC.Core.Savior; +using ABI_RC.Core.Savior; using ABI_RC.Core.UI; using System.Reflection; diff --git a/archived/ml_vet/resources/mod_menu.js b/archived/ml_vet/resources/mod_menu.js index b845796..156ef3b 100644 --- a/archived/ml_vet/resources/mod_menu.js +++ b/archived/ml_vet/resources/mod_menu.js @@ -1,4 +1,4 @@ -{ +{ let l_block = document.createElement('div'); l_block.innerHTML = `
diff --git a/ml_amt/Properties/AssemblyInfo.cs b/ml_amt/Properties/AssemblyInfo.cs index 003591e..992f47c 100644 --- a/ml_amt/Properties/AssemblyInfo.cs +++ b/ml_amt/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_amt.AvatarMotionTweaker), "AvatarMotionTweaker", "1.5.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_amt.AvatarMotionTweaker), "AvatarMotionTweaker", "1.5.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_asl/Properties/AssemblyInfo.cs b/ml_asl/Properties/AssemblyInfo.cs index 578b743..52af3d0 100644 --- a/ml_asl/Properties/AssemblyInfo.cs +++ b/ml_asl/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_asl.AvatarSyncedLook), "AvatarSyncedLook", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_asl.AvatarSyncedLook), "AvatarSyncedLook", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_bft/Properties/AssemblyInfo.cs b/ml_bft/Properties/AssemblyInfo.cs index 3a8006f..be9d351 100644 --- a/ml_bft/Properties/AssemblyInfo.cs +++ b/ml_bft/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_bft.BetterFingersTracking), "BetterFingersTracking", "1.1.3", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_bft.BetterFingersTracking), "BetterFingersTracking", "1.1.3", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_lme/Properties/AssemblyInfo.cs b/ml_lme/Properties/AssemblyInfo.cs index de7fe58..2f98499 100644 --- a/ml_lme/Properties/AssemblyInfo.cs +++ b/ml_lme/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_lme.LeapMotionExtension), "LeapMotionExtension", "1.6.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_lme.LeapMotionExtension), "LeapMotionExtension", "1.6.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_mods_cvr.sln b/ml_mods_cvr.sln index 7094403..0d9f2e8 100644 --- a/ml_mods_cvr.sln +++ b/ml_mods_cvr.sln @@ -1,4 +1,4 @@ - + Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 16 VisualStudioVersion = 16.0.33214.272 diff --git a/ml_pah/Properties/AssemblyInfo.cs b/ml_pah/Properties/AssemblyInfo.cs index f311837..9ae41be 100644 --- a/ml_pah/Properties/AssemblyInfo.cs +++ b/ml_pah/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_pah.PlayerAvatarHistory), "PlayerAvatarHistory", "1.0.0", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_pah.PlayerAvatarHistory), "PlayerAvatarHistory", "1.0.0", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_pam/Properties/AssemblyInfo.cs b/ml_pam/Properties/AssemblyInfo.cs index 07543c2..3396b89 100644 --- a/ml_pam/Properties/AssemblyInfo.cs +++ b/ml_pam/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_pam.PickupArmMovement), "PickupArmMovement", "1.2.3", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_pam.PickupArmMovement), "PickupArmMovement", "1.2.3", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPriority(1)] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] diff --git a/ml_pin/Properties/AssemblyInfo.cs b/ml_pin/Properties/AssemblyInfo.cs index 3447171..1c7fa0a 100644 --- a/ml_pin/Properties/AssemblyInfo.cs +++ b/ml_pin/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_pin.PlayersInstanceNotifier), "PlayersInstanceNotifier", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_pin.PlayersInstanceNotifier), "PlayersInstanceNotifier", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_pmc/Properties/AssemblyInfo.cs b/ml_pmc/Properties/AssemblyInfo.cs index ff06217..4a7ae7d 100644 --- a/ml_pmc/Properties/AssemblyInfo.cs +++ b/ml_pmc/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_pmc.PlayerMovementCopycat), "PlayerMovementCopycat", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_pmc.PlayerMovementCopycat), "PlayerMovementCopycat", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPriority(3)] [assembly: MelonLoader.MelonAdditionalDependencies("BTKUILib")] diff --git a/ml_ppu/Properties/AssemblyInfo.cs b/ml_ppu/Properties/AssemblyInfo.cs index d5a3c9b..547910d 100644 --- a/ml_ppu/Properties/AssemblyInfo.cs +++ b/ml_ppu/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_ppu.PlayerPickUp), "PlayerPickUp", "1.0.1", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_ppu.PlayerPickUp), "PlayerPickUp", "1.0.1", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonOptionalDependencies("PlayerRagdollMod")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] diff --git a/ml_prm/Properties/AssemblyInfo.cs b/ml_prm/Properties/AssemblyInfo.cs index a692c71..7d9c4ce 100644 --- a/ml_prm/Properties/AssemblyInfo.cs +++ b/ml_prm/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_prm.PlayerRagdollMod), "PlayerRagdollMod", "1.2.4", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_prm.PlayerRagdollMod), "PlayerRagdollMod", "1.2.4", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPriority(2)] [assembly: MelonLoader.MelonAdditionalDependencies("BTKUILib")] diff --git a/ml_prm/ml_prm.csproj b/ml_prm/ml_prm.csproj index 4059621..2532dcd 100644 --- a/ml_prm/ml_prm.csproj +++ b/ml_prm/ml_prm.csproj @@ -1,99 +1,99 @@ - - - - netstandard2.1 - x64 - PlayerRagdollMod - 1.2.4 - SDraw - SDraw - PlayerRagdollMod - PlayerRagdollMod - - + + + + netstandard2.1 + x64 + PlayerRagdollMod + 1.2.4 + SDraw + SDraw + PlayerRagdollMod + PlayerRagdollMod + + embedded true - - - - - - - - - - - - - $(CVRPath)/MelonLoader/net35/0Harmony.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp-firstpass.dll - false - false - - - $(CVRPath)/Mods/BTKUILib.dll - false - false - + + + + + + + + + + + + + $(CVRPath)/MelonLoader/net35/0Harmony.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/Assembly-CSharp-firstpass.dll + false + false + + + $(CVRPath)/Mods/BTKUILib.dll + false + false + $(CVRPath)/ChilloutVR_Data/Managed/ECM2.dll false false - - - $(CVRPath)/MelonLoader/net35/MelonLoader.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.AnimationModule.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.ClothModule.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.CoreModule.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.InputLegacyModule.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.PhysicsModule.dll - false - false - - - $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.ParticleSystemModule.dll - false - false - - - - - - - - + + + $(CVRPath)/MelonLoader/net35/MelonLoader.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.AnimationModule.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.ClothModule.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.CoreModule.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.InputLegacyModule.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.PhysicsModule.dll + false + false + + + $(CVRPath)/ChilloutVR_Data/Managed/UnityEngine.ParticleSystemModule.dll + false + false + + + + + + + + diff --git a/ml_vei/Properties/AssemblyInfo.cs b/ml_vei/Properties/AssemblyInfo.cs index 6c140ba..5703e5c 100644 --- a/ml_vei/Properties/AssemblyInfo.cs +++ b/ml_vei/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_vei.ViveExtendedInput), "ViveExtendedInput", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_vei.ViveExtendedInput), "ViveExtendedInput", "1.1.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] diff --git a/ml_vpc/Properties/AssemblyInfo.cs b/ml_vpc/Properties/AssemblyInfo.cs index eeac241..e5a574b 100644 --- a/ml_vpc/Properties/AssemblyInfo.cs +++ b/ml_vpc/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -[assembly: MelonLoader.MelonInfo(typeof(ml_vpc.VideoPlayerCookies), "VideoPlayerCookies", "1.0.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] +[assembly: MelonLoader.MelonInfo(typeof(ml_vpc.VideoPlayerCookies), "VideoPlayerCookies", "1.0.2", "SDraw", "https://github.com/SDraw/ml_mods_cvr")] [assembly: MelonLoader.MelonGame(null, "ChilloutVR")] [assembly: MelonLoader.MelonPlatform(MelonLoader.MelonPlatformAttribute.CompatiblePlatforms.WINDOWS_X64)] [assembly: MelonLoader.MelonPlatformDomain(MelonLoader.MelonPlatformDomainAttribute.CompatibleDomains.MONO)] From e6f27aad771f70de5eb2cab8166509d6e31725b9 Mon Sep 17 00:00:00 2001 From: Hanz Date: Mon, 18 Aug 2025 14:48:35 -0500 Subject: [PATCH 3/5] copy command only exists on windows --- ml_amt/ml_amt.csproj | 2 +- ml_asl/ml_asl.csproj | 2 +- ml_bft/ml_bft.csproj | 2 +- ml_lme/ml_lme.csproj | 10 +++++----- ml_pah/ml_pah.csproj | 2 +- ml_pam/ml_pam.csproj | 2 +- ml_pin/ml_pin.csproj | 2 +- ml_pmc/ml_pmc.csproj | 2 +- ml_ppu/ml_ppu.csproj | 2 +- ml_prm/ml_prm.csproj | 2 +- ml_vei/ml_vei.csproj | 2 +- ml_vpc/ml_vpc.csproj | 2 +- 12 files changed, 16 insertions(+), 16 deletions(-) diff --git a/ml_amt/ml_amt.csproj b/ml_amt/ml_amt.csproj index 13765dd..1271d14 100644 --- a/ml_amt/ml_amt.csproj +++ b/ml_amt/ml_amt.csproj @@ -92,7 +92,7 @@ - + diff --git a/ml_asl/ml_asl.csproj b/ml_asl/ml_asl.csproj index bb73298..533e9fd 100644 --- a/ml_asl/ml_asl.csproj +++ b/ml_asl/ml_asl.csproj @@ -69,7 +69,7 @@ - + diff --git a/ml_bft/ml_bft.csproj b/ml_bft/ml_bft.csproj index 99dd28d..eaf983c 100644 --- a/ml_bft/ml_bft.csproj +++ b/ml_bft/ml_bft.csproj @@ -94,7 +94,7 @@ - + diff --git a/ml_lme/ml_lme.csproj b/ml_lme/ml_lme.csproj index 432064c..57d4ca6 100644 --- a/ml_lme/ml_lme.csproj +++ b/ml_lme/ml_lme.csproj @@ -28,7 +28,7 @@ - + @@ -37,7 +37,7 @@ resources/LeapC.dll - + $(CVRPath)/MelonLoader/net35/0Harmony.dll @@ -100,17 +100,17 @@ false - + - + - + diff --git a/ml_pah/ml_pah.csproj b/ml_pah/ml_pah.csproj index 2d1f70f..56e4731 100644 --- a/ml_pah/ml_pah.csproj +++ b/ml_pah/ml_pah.csproj @@ -54,7 +54,7 @@ - + diff --git a/ml_pam/ml_pam.csproj b/ml_pam/ml_pam.csproj index fa8ddc0..e82f80b 100644 --- a/ml_pam/ml_pam.csproj +++ b/ml_pam/ml_pam.csproj @@ -83,7 +83,7 @@ - + diff --git a/ml_pin/ml_pin.csproj b/ml_pin/ml_pin.csproj index c53bcaf..0a144eb 100644 --- a/ml_pin/ml_pin.csproj +++ b/ml_pin/ml_pin.csproj @@ -86,7 +86,7 @@ - + diff --git a/ml_pmc/ml_pmc.csproj b/ml_pmc/ml_pmc.csproj index 65f409f..7cf5e0d 100644 --- a/ml_pmc/ml_pmc.csproj +++ b/ml_pmc/ml_pmc.csproj @@ -17,7 +17,7 @@ - + diff --git a/ml_ppu/ml_ppu.csproj b/ml_ppu/ml_ppu.csproj index 6d6ed75..2fded87 100644 --- a/ml_ppu/ml_ppu.csproj +++ b/ml_ppu/ml_ppu.csproj @@ -75,7 +75,7 @@ - + diff --git a/ml_prm/ml_prm.csproj b/ml_prm/ml_prm.csproj index 2532dcd..ac0cf10 100644 --- a/ml_prm/ml_prm.csproj +++ b/ml_prm/ml_prm.csproj @@ -93,7 +93,7 @@ - + diff --git a/ml_vei/ml_vei.csproj b/ml_vei/ml_vei.csproj index d8d19d6..b40bc5a 100644 --- a/ml_vei/ml_vei.csproj +++ b/ml_vei/ml_vei.csproj @@ -78,7 +78,7 @@ - + diff --git a/ml_vpc/ml_vpc.csproj b/ml_vpc/ml_vpc.csproj index d00abb8..779dbe8 100644 --- a/ml_vpc/ml_vpc.csproj +++ b/ml_vpc/ml_vpc.csproj @@ -15,7 +15,7 @@ - + From 125d83f45c351773a18e52af0af28fcbad2dd355 Mon Sep 17 00:00:00 2001 From: Hanz Date: Mon, 18 Aug 2025 16:52:54 -0500 Subject: [PATCH 4/5] add copy command for non-windows platforms --- ml_amt/ml_amt.csproj | 1 + ml_asl/ml_asl.csproj | 1 + ml_bft/ml_bft.csproj | 1 + ml_lme/ml_lme.csproj | 1 + ml_pah/ml_pah.csproj | 1 + ml_pam/ml_pam.csproj | 1 + ml_pin/ml_pin.csproj | 1 + ml_pmc/ml_pmc.csproj | 1 + ml_ppu/ml_ppu.csproj | 1 + ml_prm/ml_prm.csproj | 1 + ml_vei/ml_vei.csproj | 1 + ml_vpc/ml_vpc.csproj | 1 + 12 files changed, 12 insertions(+) diff --git a/ml_amt/ml_amt.csproj b/ml_amt/ml_amt.csproj index 1271d14..e3b3e05 100644 --- a/ml_amt/ml_amt.csproj +++ b/ml_amt/ml_amt.csproj @@ -93,6 +93,7 @@ + diff --git a/ml_asl/ml_asl.csproj b/ml_asl/ml_asl.csproj index 533e9fd..38d2e95 100644 --- a/ml_asl/ml_asl.csproj +++ b/ml_asl/ml_asl.csproj @@ -70,6 +70,7 @@ + diff --git a/ml_bft/ml_bft.csproj b/ml_bft/ml_bft.csproj index eaf983c..62d3eac 100644 --- a/ml_bft/ml_bft.csproj +++ b/ml_bft/ml_bft.csproj @@ -95,6 +95,7 @@ + diff --git a/ml_lme/ml_lme.csproj b/ml_lme/ml_lme.csproj index 57d4ca6..9b99f1b 100644 --- a/ml_lme/ml_lme.csproj +++ b/ml_lme/ml_lme.csproj @@ -111,6 +111,7 @@ + diff --git a/ml_pah/ml_pah.csproj b/ml_pah/ml_pah.csproj index 56e4731..c09d67a 100644 --- a/ml_pah/ml_pah.csproj +++ b/ml_pah/ml_pah.csproj @@ -55,6 +55,7 @@ + diff --git a/ml_pam/ml_pam.csproj b/ml_pam/ml_pam.csproj index e82f80b..38c8056 100644 --- a/ml_pam/ml_pam.csproj +++ b/ml_pam/ml_pam.csproj @@ -84,6 +84,7 @@ + diff --git a/ml_pin/ml_pin.csproj b/ml_pin/ml_pin.csproj index 0a144eb..bb30ce9 100644 --- a/ml_pin/ml_pin.csproj +++ b/ml_pin/ml_pin.csproj @@ -87,6 +87,7 @@ + diff --git a/ml_pmc/ml_pmc.csproj b/ml_pmc/ml_pmc.csproj index 7cf5e0d..fa8768c 100644 --- a/ml_pmc/ml_pmc.csproj +++ b/ml_pmc/ml_pmc.csproj @@ -18,6 +18,7 @@ + diff --git a/ml_ppu/ml_ppu.csproj b/ml_ppu/ml_ppu.csproj index 2fded87..3d16533 100644 --- a/ml_ppu/ml_ppu.csproj +++ b/ml_ppu/ml_ppu.csproj @@ -76,6 +76,7 @@ + diff --git a/ml_prm/ml_prm.csproj b/ml_prm/ml_prm.csproj index ac0cf10..4d7db15 100644 --- a/ml_prm/ml_prm.csproj +++ b/ml_prm/ml_prm.csproj @@ -94,6 +94,7 @@ + diff --git a/ml_vei/ml_vei.csproj b/ml_vei/ml_vei.csproj index b40bc5a..bdfdf7c 100644 --- a/ml_vei/ml_vei.csproj +++ b/ml_vei/ml_vei.csproj @@ -79,6 +79,7 @@ + diff --git a/ml_vpc/ml_vpc.csproj b/ml_vpc/ml_vpc.csproj index 779dbe8..bcabcca 100644 --- a/ml_vpc/ml_vpc.csproj +++ b/ml_vpc/ml_vpc.csproj @@ -16,6 +16,7 @@ + From a2d123290c63ad1daabf22f97f35d57d94649e13 Mon Sep 17 00:00:00 2001 From: Hanz Date: Tue, 19 Aug 2025 18:14:34 -0500 Subject: [PATCH 5/5] not everything builds on debug configuration --- ml_mods_cvr.sln | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ml_mods_cvr.sln b/ml_mods_cvr.sln index 0d9f2e8..7882d59 100644 --- a/ml_mods_cvr.sln +++ b/ml_mods_cvr.sln @@ -39,15 +39,19 @@ Global {714806A3-E6FC-46F6-9D1D-89C77FEBAF06}.Debug|x64.ActiveCfg = Debug|x64 {714806A3-E6FC-46F6-9D1D-89C77FEBAF06}.Release|x64.ActiveCfg = Release|x64 {714806A3-E6FC-46F6-9D1D-89C77FEBAF06}.Release|x64.Build.0 = Release|x64 + {714806A3-E6FC-46F6-9D1D-89C77FEBAF06}.Debug|x64.Build.0 = Debug|x64 {77EA76B1-3709-4FC5-BDBD-8F77160E6DA3}.Debug|x64.ActiveCfg = Debug|x64 {77EA76B1-3709-4FC5-BDBD-8F77160E6DA3}.Release|x64.ActiveCfg = Release|x64 {77EA76B1-3709-4FC5-BDBD-8F77160E6DA3}.Release|x64.Build.0 = Release|x64 + {77EA76B1-3709-4FC5-BDBD-8F77160E6DA3}.Debug|x64.Build.0 = Debug|x64 {5B614459-234A-443D-B06D-34FF81ADA67E}.Debug|x64.ActiveCfg = Debug|x64 {5B614459-234A-443D-B06D-34FF81ADA67E}.Release|x64.ActiveCfg = Release|x64 {5B614459-234A-443D-B06D-34FF81ADA67E}.Release|x64.Build.0 = Release|x64 + {5B614459-234A-443D-B06D-34FF81ADA67E}.Debug|x64.Build.0 = Debug|x64 {118675AA-9AC7-4B0C-BFB1-FA1691619502}.Debug|x64.ActiveCfg = Debug|x64 {118675AA-9AC7-4B0C-BFB1-FA1691619502}.Release|x64.ActiveCfg = Release|x64 {118675AA-9AC7-4B0C-BFB1-FA1691619502}.Release|x64.Build.0 = Release|x64 + {118675AA-9AC7-4B0C-BFB1-FA1691619502}.Debug|x64.Build.0 = Debug|x64 {608CDBD6-8E29-43B7-BCBF-7E3967430A24}.Debug|x64.ActiveCfg = Debug|x64 {608CDBD6-8E29-43B7-BCBF-7E3967430A24}.Debug|x64.Build.0 = Debug|x64 {608CDBD6-8E29-43B7-BCBF-7E3967430A24}.Release|x64.ActiveCfg = Release|x64 @@ -59,12 +63,15 @@ Global {5B4EC6EF-541A-47D2-B602-915205590553}.Debug|x64.ActiveCfg = Debug|x64 {5B4EC6EF-541A-47D2-B602-915205590553}.Release|x64.ActiveCfg = Release|x64 {5B4EC6EF-541A-47D2-B602-915205590553}.Release|x64.Build.0 = Release|x64 + {5B4EC6EF-541A-47D2-B602-915205590553}.Debug|x64.Build.0 = Debug|x64 {7E493C28-7202-46F8-9789-D6C6FF7E5241}.Debug|x64.ActiveCfg = Debug|x64 {7E493C28-7202-46F8-9789-D6C6FF7E5241}.Release|x64.ActiveCfg = Release|x64 {7E493C28-7202-46F8-9789-D6C6FF7E5241}.Release|x64.Build.0 = Release|x64 + {7E493C28-7202-46F8-9789-D6C6FF7E5241}.Debug|x64.Build.0 = Debug|x64 {331C995D-9648-44AD-8B02-D5F3A89FDC1F}.Debug|x64.ActiveCfg = Debug|x64 {331C995D-9648-44AD-8B02-D5F3A89FDC1F}.Release|x64.ActiveCfg = Release|x64 {331C995D-9648-44AD-8B02-D5F3A89FDC1F}.Release|x64.Build.0 = Release|x64 + {331C995D-9648-44AD-8B02-D5F3A89FDC1F}.Debug|x64.Build.0 = Debug|x64 {7CF37B93-9341-422D-845C-9AB96DB4D0A1}.Debug|x64.ActiveCfg = Debug|x64 {7CF37B93-9341-422D-845C-9AB96DB4D0A1}.Debug|x64.Build.0 = Debug|x64 {7CF37B93-9341-422D-845C-9AB96DB4D0A1}.Release|x64.ActiveCfg = Release|x64 @@ -76,6 +83,7 @@ Global {C4659F60-3FED-4F43-88E4-969907D4C7A6}.Debug|x64.ActiveCfg = Debug|x64 {C4659F60-3FED-4F43-88E4-969907D4C7A6}.Release|x64.ActiveCfg = Release|x64 {C4659F60-3FED-4F43-88E4-969907D4C7A6}.Release|x64.Build.0 = Release|x64 + {C4659F60-3FED-4F43-88E4-969907D4C7A6}.Debug|x64.Build.0 = Debug|x64 EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE