Reorganize, shared entities from TypeScript SDK

https://github.com/cloudflare/cloudflare-typescript/blob/v4.4.1/src/resources/shared.ts
This commit is contained in:
2025-06-24 09:16:43 +02:00
parent d64e445a79
commit 135e1a11f3
49 changed files with 1719 additions and 237 deletions

View File

@@ -2,6 +2,7 @@
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<NrtTagMatch>zones/v[0-9]*</NrtTagMatch>
<PackageId>AMWD.Net.API.Cloudflare.Zones</PackageId>
<PackageTags>cloudflare api zones</PackageTags>
@@ -9,8 +10,8 @@
<AssemblyName>amwd-cloudflare-zones</AssemblyName>
<RootNamespace>AMWD.Net.Api.Cloudflare.Zones</RootNamespace>
<Product>Cloudflare API - Zones</Product>
<Description>Zone management features of the Cloudflare API</Description>
<Product>Cloudflare API - Domain/Zone Management</Product>
<Description>The Domain/Zone Management section of the Cloudflare API.</Description>
</PropertyGroup>
<!-- Only build package for tagged releases or Debug on CI (only dev NuGet feed) -->

View File

@@ -1,8 +1,8 @@
# Cloudflare API for .NET | Zones
With this extension package, you'll get all features available to manage a Zone on Cloudflare.
This package contains the feature set of the _Domain/Zone Management_ section of the Cloudflare API.
## Methods
## Implemented Methods
### Zone

View File

@@ -7,14 +7,10 @@
<CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/AM-WD/cloudflare-api.git</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageIcon>package-icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://developers.cloudflare.com/api</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
@@ -39,6 +35,7 @@
<ItemGroup>
<None Include="$(SolutionDir)/package-icon.png" Pack="true" PackagePath="/" />
<None Include="$(SolutionDir)/LICENSE.txt" Pack="true" PackagePath="/" />
<None Include="README.md" Pack="true" PackagePath="/" />
</ItemGroup>
@@ -50,6 +47,7 @@
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Release'">
<!-- This package version has to be updated whenever the base API implementation changes. -->
<PackageReference Include="AMWD.Net.API.Cloudflare" Version="0.1.0" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)' == 'Debug'">