2021-02-21 23:01:05 +00:00
|
|
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2021-02-21 23:19:49 +00:00
|
|
|
<Target Name="AfterBuild">
|
|
|
|
<ItemGroup>
|
|
|
|
<LOCALE Include="..\locale\**\*.*" />
|
|
|
|
<CERT Include="..\curl\ca-bundle.crt" />
|
|
|
|
</ItemGroup>
|
|
|
|
<Copy SourceFiles="@(LOCALE)" DestinationFolder="$(OutDir)\locale\%(RecursiveDir)" SkipUnchangedFiles="true" />
|
|
|
|
<Copy SourceFiles="@(CERT)" DestinationFolder="$(OutDir)" SkipUnchangedFiles="true" />
|
|
|
|
</Target>
|
2021-02-21 23:01:05 +00:00
|
|
|
</Project>
|