Working first pass. Downloads all files with generic filename. Does not parse title. Does not write metadata.

This commit is contained in:
matt
2024-03-30 09:24:37 +01:00
parent 134f242d19
commit f34b6d5ab9
6 changed files with 152 additions and 0 deletions

16
SBT Downloader.csproj Normal file
View File

@@ -0,0 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>SBT_Downloader</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="PowerArgs" Version="4.0.3" />
</ItemGroup>
</Project>