diff --git a/YouTubeChannelDownloader.sln b/YouTubeChannelDownloader.sln new file mode 100644 index 0000000..9af2eab --- /dev/null +++ b/YouTubeChannelDownloader.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.31410.357 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "YouTubeChannelDownloader", "YouTubeChannelDownloader\YouTubeChannelDownloader.csproj", "{BD981511-CE22-4366-A69B-93E4F20B966A}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {BD981511-CE22-4366-A69B-93E4F20B966A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {BD981511-CE22-4366-A69B-93E4F20B966A}.Debug|Any CPU.Build.0 = Debug|Any CPU + {BD981511-CE22-4366-A69B-93E4F20B966A}.Release|Any CPU.ActiveCfg = Release|Any CPU + {BD981511-CE22-4366-A69B-93E4F20B966A}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {32381847-5036-4144-AF7A-27D70A2A8589} + EndGlobalSection +EndGlobal diff --git a/YouTubeChannelDownloader/Program.cs b/YouTubeChannelDownloader/Program.cs new file mode 100644 index 0000000..b4b0bf1 --- /dev/null +++ b/YouTubeChannelDownloader/Program.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.IO; + +namespace YouTubeChannelDownloader +{ + internal class Program + { + private static async Task Main(string[] args) + { + } +} diff --git a/YouTubeChannelDownloader/YouTubeChannelDownloader.csproj b/YouTubeChannelDownloader/YouTubeChannelDownloader.csproj new file mode 100644 index 0000000..014f6fc --- /dev/null +++ b/YouTubeChannelDownloader/YouTubeChannelDownloader.csproj @@ -0,0 +1,10 @@ + + + + Exe + net5.0 + + + + + diff --git a/YouTubeChannelDownloader/db/downloadedvideos.sqlite b/YouTubeChannelDownloader/db/downloadedvideos.sqlite new file mode 100644 index 0000000..23a2f01 Binary files /dev/null and b/YouTubeChannelDownloader/db/downloadedvideos.sqlite differ