Merge pull request #2 from hanetzer/formatting-v2

Formatting 2: Electric Boogaloo
This commit is contained in:
SDraw 2025-11-03 00:15:23 +03:00 committed by GitHub
commit 5008e6a6ef
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
68 changed files with 197 additions and 161 deletions

View file

@ -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)]

View file

@ -83,7 +83,8 @@
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /y &quot;$(TargetPath)&quot; &quot;$(CVRPath)/Mods/&quot;" />
<Exec Command="copy /y &quot;$(TargetPath)&quot; &quot;$(CVRPath)/Mods/&quot;" Condition="$([MSBuild]::IsOSPlatform('Windows'))" />
<Exec Command="cp -f &quot;$(TargetPath)&quot; &quot;$(CVRPath)/Mods/&quot;" Condition=" '$(OS)' != 'Windows_NT' " />
</Target>
</Project>