Add project to update Patrons.yml from a csv file containing Patreon webhooks, add missing Patrons (#20942)

This commit is contained in:
DrSmugleaf
2023-10-12 00:33:30 -07:00
committed by GitHub
parent 1e1433374a
commit 388e424a17
13 changed files with 267 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CsvHelper" Version="30.0.1" />
</ItemGroup>
</Project>