Added DNS extension

This commit is contained in:
2025-07-10 10:15:46 +02:00
parent 29f6c4ae81
commit 8ae7681fc8
4 changed files with 65 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<NrtTagMatch>dns/v[0-9]*</NrtTagMatch>
<PackageId>AMWD.Net.API.Cloudflare.Dns</PackageId>
<PackageTags>cloudflare api dns</PackageTags>
<AssemblyName>amwd-cloudflare-dns</AssemblyName>
<RootNamespace>AMWD.Net.Api.Cloudflare.Dns</RootNamespace>
<Product>Cloudflare API - DNS</Product>
<Description>The DNS section of the Cloudflare API.</Description>
</PropertyGroup>
<!-- Only build package for tagged releases or Debug on CI (only dev NuGet feed) -->
<PropertyGroup Condition="$([System.Text.RegularExpressions.Regex]::IsMatch('$(CI_COMMIT_TAG)', '^dns\/v[0-9.]+')) or ('$(Configuration)' == 'Debug' and '$(GITLAB_CI)' == 'true')">
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="Cloudflare.Dns.Tests" PublicKey="$(PublicKey)" />
</ItemGroup>
</Project>

View File

@@ -0,0 +1,14 @@
# Cloudflare API for .NET | DNS
This package contains the feature set of the _DNS_ section of the Cloudflare API.
## Implemented Methods
---
Published under MIT License (see [choose a license])
[choose a license]: https://choosealicense.com/licenses/mit/