mirror of
https://github.com/hama3254/Crunchyroll-Downloader-v3.0.git
synced 2024-11-11 02:35:07 +01:00
6e665140e4
- added a http webserver and made a Firefox addon to control the downloader (the server need to be activated in the settings) basic example : https://www.youtube.com/watch?v=AzgNzCrXfpo (works also for funimation) -rewritten the funimation name methods and added subfolder support -fixed issues with funimation subtitels
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> |