mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-10 18:25:05 +01:00
17 lines
602 B
Plaintext
17 lines
602 B
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||
|
<ItemGroup>
|
||
|
<Firefox Include="$(MSBuildProjectDirectory)\Firefox\*.*" />
|
||
|
</ItemGroup>
|
||
|
<PropertyGroup>
|
||
|
<!-- Make CopyFiles target actually get executed.-->
|
||
|
<BuildDependsOn>
|
||
|
$(BuildDependsOn);
|
||
|
CopyFiles
|
||
|
</BuildDependsOn>
|
||
|
<!-- Copy Firefox files to output dir -->
|
||
|
</PropertyGroup>
|
||
|
<Target Name="CopyFiles">
|
||
|
<Copy SourceFiles="@(FIREFOX)" DestinationFolder="$(TargetDir)\Firefox" SkipUnchangedFiles="true" />
|
||
|
</Target>
|
||
|
</Project>
|