Implemented Core client

This commit is contained in:
2024-10-23 21:00:23 +02:00
parent 3c8d5137ff
commit 83620cb450
43 changed files with 4218 additions and 2 deletions

20
Directory.Build.props Normal file
View File

@@ -0,0 +1,20 @@
<Project>
<PropertyGroup>
<LangVersion>12.0</LangVersion>
<Title>Modular Cloudflare API implementation in .NET</Title>
<Company>AM.WD</Company>
<Authors>Andreas Müller</Authors>
<Copyright>© {copyright:2024-} AM.WD</Copyright>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(SolutionDir)/cloudflare-api.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3"/>
<Using Include="Newtonsoft.Json"/>
</ItemGroup>
</Project>