2021-02-21 23:01:05 +00:00
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2021-02-22 06:48:23 +00:00
|
|
|
<Target Name="CopyCertificateAndLocaleFiles" DependsOnTargets="Build" AfterTargets="Build">
|
2021-02-21 23:21:21 +00:00
|
|
|
<ItemGroup>
|
2021-02-22 09:01:06 +00:00
|
|
|
<LOCALE Include="..\locale\**\*.mo" />
|
2022-07-08 20:50:42 +00:00
|
|
|
<SKINS Include="..\clientgui\skins\**" />
|
2021-02-21 23:21:21 +00:00
|
|
|
</ItemGroup>
|
|
|
|
<Copy SourceFiles="@(LOCALE)" DestinationFolder="$(OutDir)\locale\%(RecursiveDir)" SkipUnchangedFiles="true" />
|
2022-07-08 20:50:42 +00:00
|
|
|
<Copy SourceFiles="@(SKINS)" DestinationFolder="$(OutDir)\skins\%(RecursiveDir)" SkipUnchangedFiles="true" />
|
2021-02-21 23:21:21 +00:00
|
|
|
</Target>
|
2021-02-22 06:47:56 +00:00
|
|
|
</Project>
|