switch distro to use .zip instead of .7z

This commit is contained in:
Tyfon
2024-07-21 14:06:54 -07:00
parent 575e33f04a
commit c52435ee37

View File

@@ -93,8 +93,7 @@
xcopy /F /Y "$(TargetPath)" "$(ProjectDir)dist\BepInEx\plugins\" xcopy /F /Y "$(TargetPath)" "$(ProjectDir)dist\BepInEx\plugins\"
xcopy /F /Y /S "$(ProjectDir)dist\BepInEx" "$(ProjectDir)$(PathToSPT)\BepInEx" xcopy /F /Y /S "$(ProjectDir)dist\BepInEx" "$(ProjectDir)$(PathToSPT)\BepInEx"
xcopy /F /Y /S "$(ProjectDir)dist\user" "$(ProjectDir)$(PathToSPT)\user" xcopy /F /Y /S "$(ProjectDir)dist\user" "$(ProjectDir)$(PathToSPT)\user"
7z a -t7z $(TargetName.Replace(".", "-"))-$(Version).7z $(ProjectDir)dist\BepInEx $(ProjectDir)dist\user 7z a -tzip dist\$(TargetName.Replace(".", "-"))-$(Version).zip $(ProjectDir)dist\BepInEx $(ProjectDir)dist\user
move /Y $(TargetName.Replace(".", "-"))-$(Version).7z dist\
)' /> )' />
</Target> </Target>
</Project> </Project>