Skip to content

Commit c661ae3

Browse files
committed
Sync open source content 🐝 (from e94524753126c4e7a8ae49be7598ba0ab8ab323d)
1 parent f37211e commit c661ae3

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/sdks/languages/csharp/methodology-csharp.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { FileTree } from "nextra/components";
1010
## SDK Overview
1111

1212
The Speakeasy C# SDK is designed to support the .NET ecosystem, including publishing to [NuGet](https://www.nuget.org/).
13-
The .NET version to build against is configurable to either `.NET 8.0` (default), `.NET 6.0`, or `.NET 5.0`.
13+
The .NET version to build against is configurable. Supported versions are `.NET 5.0`, `.NET 6.0`, `.NET 8.0`, and `.NET 10.0` (default).
1414

1515
The SDK is designed to be strongly typed, light on external dependencies, easy to debug, and easy to use. Some of its core features include:
1616

docs/speakeasy-reference/generation/csharp-config.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ csharp:
1111
version: 1.2.3
1212
author: "Author Name"
1313
packageName: "custom-sdk"
14-
dotnetVersion: "net8.0"
14+
dotnetVersion: "net10.0"
1515
description: "A description of your SDK"
1616
```
1717
@@ -20,7 +20,7 @@ csharp:
2020
{ name: "version", required: "true", default: "0.0.1", description: "The current version of the SDK." },
2121
{ name: "packageName", required: "true", default: "openapi", description: "The [NuGet package ID](https://learn.microsoft.com/en-us/dotnet/standard/design-guidelines/names-of-namespaces), also used as the root namespace" },
2222
{ name: "author", required: "true", default: "Speakeasy", description: "The name of the [author](https://learn.microsoft.com/en-us/nuget/create-packages/package-authoring-best-practices#authors) of the published package." },
23-
{ name: "dotnetVersion", required: "false", default: "dotnetVersion", description: "The [version](https://learn.microsoft.com/en-us/dotnet/standard/frameworks) of .NET to target. net8.0 (default), net6.0 and net5.0 supported." },
23+
{ name: "dotnetVersion", required: "false", default: "net10.0", description: "The [version](https://learn.microsoft.com/en-us/dotnet/standard/frameworks) of .NET to target. Supported versions: `net5.0`, `net6.0`, `net8.0`, and `net10.0` (default)." },
2424
{ name: "description", required: "false", default: "Uses the OpenAPI spec's description or summary field", description: "A description of the SDK that will be included in the generated .csproj file." }
2525
]}
2626
columns={[

0 commit comments

Comments
 (0)