Try fixing postbuild commands

This commit is contained in:
hydrant
2018-11-04 16:32:00 +01:00
parent a7c4a920a8
commit 306cc8b41a

View File

@@ -14,6 +14,6 @@
<PackageReference Include="gtanetwork.api" Version="0.3.6" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if NOT &quot;$(ConfigurationName)&quot; == &quot;ServerBuild&quot; then&#xD;&#xA; del &quot;../../client_packages\*&quot; /Q /S&#xD;&#xA; xcopy &quot;$(OutDir)*&quot; &quot;../../bridge\resources\reallife-gamemode&quot; /Y /Q&#xD;&#xA; del &quot;../../client_packages\*.*&quot; /Q&#xD;&#xA; xcopy &quot;../../reallife-gamemode\reallife-gamemode\Client\*&quot; &quot;../../client_packages\&quot; /S /Q /Y&#xD;&#xA;fi" />
<Exec Command="if NOT &quot;$(ConfigurationName)&quot; == &quot;ServerBuild&quot; (&#xD;&#xA; del &quot;..\..\client_packages\*&quot; /Q /S&#xD;&#xA; xcopy &quot;$(OutDir)*&quot; &quot;..\..\bridge\resources\reallife-gamemode&quot; /Y /Q&#xD;&#xA; del &quot;..\..\client_packages\*.*&quot; /Q&#xD;&#xA; xcopy &quot;..\..\reallife-gamemode\reallife-gamemode\Client\*&quot; &quot;..\..\client_packages\&quot; /S /Q /Y&#xD;&#xA;)" />
</Target>
</Project>