Add selling selection to trader

This commit is contained in:
2024-07-23 21:10:53 +02:00
parent d9dda127a7
commit 7ecd539419
2 changed files with 133 additions and 14 deletions

View File

@@ -93,18 +93,4 @@
<ItemGroup>
<None Remove="lib\**" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command='if $(ConfigurationName) == Debug (
xcopy /F /Y "$(TargetPath)" "$(ProjectDir)$(PathToSPT)\BepInEx\plugins\"
xcopy /F /Y "$(ProjectDir)$(OutDir)$(TargetName).pdb" "$(ProjectDir)$(PathToSPT)\BepInEx\plugins\"
)
if $(ConfigurationName) == Release (
mkdir "$(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\user" "$(ProjectDir)$(PathToSPT)\user"
7z a -tzip dist\$(TargetName.Replace(".", "-"))-$(Version).zip $(ProjectDir)dist\BepInEx $(ProjectDir)dist\user
)' />
</Target>
</Project>