Fixed postbuild event

This commit is contained in:
hydrant
2018-11-04 16:27:28 +01:00
parent f492044a89
commit a7c4a920a8

View File

@@ -14,6 +14,6 @@
<PackageReference Include="gtanetwork.api" Version="0.3.6" /> <PackageReference Include="gtanetwork.api" Version="0.3.6" />
</ItemGroup> </ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent"> <Target Name="PostBuild" AfterTargets="PostBuildEvent">
<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;)" /> <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" />
</Target> </Target>
</Project> </Project>