Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,3 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs

YoutubePlaylistDownloader/ffmpeg.exe
/Installer Output/
/FFmpeg/
4 changes: 4 additions & 0 deletions FFmpeg/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except for this file
!.gitignore
4 changes: 4 additions & 0 deletions InstallerOutput/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except for this file
!.gitignore
3 changes: 1 addition & 2 deletions YPDSetup/YPDSetup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ AppUpdatesURL=https://github.com/shaked6540/YoutubePlaylistDownloader
DefaultDirName={commonpf}\YouTube Playlist Downloader
DefaultGroupName=YouTube Playlist Downloader
AllowNoIcons=yes
OutputDir=..\Installer Output\1.9.26\
OutputDir=..\InstallerOutput\1.9.26\
OutputBaseFilename=YoutubePlaylistDownloader
SetupIconFile=..\YoutubePlaylistDownloader\finalIcon.ico
Compression=lzma
Expand All @@ -33,7 +33,6 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{

[Files]
Source: "..\YoutubePlaylistDownloader\bin\Release\net8.0-windows\*"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\FFmpeg\ffmpeg.exe"; DestDir: "{app}"; Flags: ignoreversion

; NOTE: Don't use "Flags: ignoreversion" on any shared system files

Expand Down
3 changes: 3 additions & 0 deletions YoutubePlaylistDownloader/YoutubePlaylistDownloader.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,7 @@
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy /Y /d &quot;$(SolutionDir)FFmpeg\ffmpeg.exe&quot; &quot;$(ProjectDir)bin\$(Configuration)\$(TargetFramework)\&quot;" />
</Target>
</Project>