mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-11 02:35:07 +01:00
cc59327bed
This reverts commit40709e74cc
, reversing changes made toc16e1b7938
.
17 lines
602 B
XML
17 lines
602 B
XML
<?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> |