Skip to content

Commit 024e318

Browse files
committed
updates .NET moniker pills
1 parent 7632abe commit 024e318

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

docs/development/unit-testing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ sidebar_label: Unit Testing
55
sidebar_position: 1
66
---
77

8-
<span className="pill">.NET 6+</span>
8+
<span className="pill">.NET 8+</span>
99
<br/>
1010
<br/>
1111

1212
:::info
13-
Your test projects must target .NET 6 or greater to use the test framework
13+
Your test projects must target .NET 8 or greater to use the test framework
1414
:::
1515

1616
GraphQL ASP.NET has more than `3500 unit tests and 91% code coverage`. All the internal integration tests are powered by a framework designed to quickly build a configurable, fully mocked server instance to perform a query against the runtime. It may be helpful to use and extend the framework to test your own controllers.

docs/quick/overview.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Use the menus on the left to navigate through the documentation. You do not need
1010

1111
## Nuget & Installation
1212

13-
<span className="pill">.NET Standard 2.0</span> <span className="pill">.NET 6</span> <span className="pill">.NET 7</span> <span className="pill">.NET 8</span> <br/><br/>
13+
<span className="pill">.NET Standard 2.0</span> <span className="pill">.NET 8</span> <span className="pill">.NET 9</span> <br/><br/>
1414

1515
The library is available on [nuget](https://www.nuget.org/packages/GraphQL.AspNet/) and can be added to your project via the conventional means.
1616

docs/server-extensions/multipart-requests.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ sidebar_label: File Uploads & Batching
55
sidebar_position: 0
66
---
77

8-
<span className="pill">.NET 6+</span>
8+
<span className="pill">.NET 8+</span>
99

1010
## Multipart Request Specification
1111
GraphQL ASP.NET provides built in support for batch query processing and file uploads via an implementation of the [GraphQL Multipart Request Specification](https://github.com/jaydenseric/graphql-multipart-request-spec).
1212

13-
This extension requires a minimum version of `v1.2.0` of the main library and you must target .NET 6 or later. This extension will not work with the .NET standard implementation.
13+
This extension requires a minimum version of `v1.2.0` of the main library and you must target .NET 8 or later. This extension will not work with the .NET standard implementation.
1414

1515
:::info
1616
This document covers how to submit a batch query and upload files that conform to the above specification. It provides sample curl requests that would be accepted for the given sample code but does not explain in detail the various form fields required to complete a request. It is highly recommended to use a [supported client](https://github.com/jaydenseric/graphql-multipart-request-spec#client) when enabling this server extension.

docs/types/scalars.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ GraphQL ASP.NET has 20 built in scalar types.
3333
| UShort | System.UInt16 | Number |
3434

3535
:::info
36-
You must target .NET 6.0 or later to use `DateOnly` and `TimeOnly`
36+
You must target .NET 8.0 or later to use `DateOnly` and `TimeOnly`
3737
:::
3838

3939
## Input Value Resolution

src/pages/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ function HomepageHeader() {
1313
return (
1414
<header className={clsx(styles.heroBanner)}>
1515
<div className="container">
16-
<h1 className="hero__title">{siteConfig.title} <span className="pill-header pill-small">.NET 6+</span></h1>
16+
<h1 className="hero__title">{siteConfig.title} <span className="pill-header pill-small">.NET 8+</span></h1>
1717
<div className={styles.buttons} >
1818
<div className={clsx("row", styles["main-buttons"])}>
1919
<div>

0 commit comments

Comments
 (0)