Skip to content

Commit 0ac39f7

Browse files
committed
rename .NET 6 to .NET 8
1 parent 3a6e494 commit 0ac39f7

29 files changed

+59
-59
lines changed

MyApp/_includes/empty-projects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ dotnet tool install --global x
1515

1616
There are a few different ways you can create empty ServiceStack projects ordered by their level of emptiness.
1717

18-
To write a minimal .NET 6 Web App to your current directory, [mix](/mix-tool) in the **[init](https://gist.github.com/gistlyn/8026c4c2a7202b99885539109145e12b)** gist files to your current directory:
18+
To write a minimal .NET 8 Web App to your current directory, [mix](/mix-tool) in the **[init](https://gist.github.com/gistlyn/8026c4c2a7202b99885539109145e12b)** gist files to your current directory:
1919

2020
:::sh
2121
x mix init

MyApp/_pages/admin-ui-profiling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ HttpClient profiling is implemented a little differently then other events in th
165165

166166
### JsonApiClient Profiling
167167

168-
Although we're able to provide richer profiling for our .NET 6+ [JsonApiClient](/csharp-client#jsonapiclient) which has access to typed Request DTOs for submitting API Requests:
168+
Although we're able to provide richer profiling for our .NET 8+ [JsonApiClient](/csharp-client#jsonapiclient) which has access to typed Request DTOs for submitting API Requests:
169169

170170
<div class="block flex justify-center items-center">
171171
<img class="max-w-screen-md" src="/img/pages/admin-ui/profiling-client-api-request.png">

MyApp/_pages/compression.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ No compression is added when running ServiceStack in a self-host, which will ben
8686

8787
## Brotli Compression
8888

89-
**.NET 6** Apps have access to is .NET Core's `BrotliStream` which is fully supported throughout ServiceStack, e.g. in Cached & Compressed Responses as well as sending compressed Request payloads in Service Clients.
89+
**.NET 8+** Apps have access to is .NET Core's `BrotliStream` which is fully supported throughout ServiceStack, e.g. in Cached & Compressed Responses as well as sending compressed Request payloads in Service Clients.
9090

9191
The Brotli implementation is encapsulated within ServiceStack's compression abstractions whose implementations are contained within:
9292

MyApp/_pages/create-your-first-webservice.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ quickly [apply gists](/mix-tool) to your project enabled by ServiceStack's effor
2020

2121
## Step 2: Selecting a template
2222

23-
Importantly, the dotnet tools lets you create [.NET 6, .NET Framework](/dotnet-new) and [ASP.NET Core on .NET Framework](/templates/corefx) projects.
24-
Unless you're restricted to working with .NET Framework you'll want to start with a [.NET 6 project template](/templates/dotnet-new#usage), for this example
23+
Importantly, the dotnet tools lets you create [.NET 8, .NET Framework](/dotnet-new) and [ASP.NET Core on .NET Framework](/templates/corefx) projects.
24+
Unless you're restricted to working with .NET Framework you'll want to start with a [.NET 8 project template](/templates/dotnet-new#usage), for this example
2525
we'll start with the Empty [web](https://github.com/NetCoreTemplates/web) template which implicitly uses the folder name for the Project Name:
2626

2727
:::sh

MyApp/_pages/declarative-validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,7 @@ namespace MyApp
547547

548548
::: info
549549
The above code can be imported into your ServiceStack project by using `x mix validation-source`
550-
if you are using .NET 6 modular startup.
550+
if you are using .NET 8 modular startup.
551551
:::
552552

553553
DB Validation rules can be added programmatically, this example below adds 1x Type Validator and 2x Property Validators to the

MyApp/_pages/dotnet-new.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ Vue CLI Bootstrap App
101101

102102
[![](/img/pages/auth/signin/vue-spa.png)](https://github.com/NetCoreTemplates/vue-spa)
103103

104-
.NET 6+
104+
.NET 8+
105105
:::sh
106106
x new vue-spa ProjectName
107107
:::
@@ -118,7 +118,7 @@ React Create App CLI Bootstrap App
118118
[![](/img/pages/auth/signin/react-spa.png)](https://github.com/NetCoreTemplates/react-spa)
119119

120120

121-
.NET 6+
121+
.NET 8+
122122
:::sh
123123
x new react-spa ProjectName
124124
:::
@@ -134,7 +134,7 @@ Svelte SPA App with Bootstrap
134134

135135
[![](/img/pages/auth/signin/svelte-spa.png)](https://github.com/NetCoreTemplates/svelte-spa)
136136

137-
.NET 6+
137+
.NET 8+
138138
:::sh
139139
x new svelte-spa ProjectName
140140
:::
@@ -145,7 +145,7 @@ Angular 12 CLI Bootstrap App
145145

146146
[![](/img/pages/auth/signin/angular-spa.png)](https://github.com/NetCoreTemplates/angular-spa)
147147

148-
.NET 6+
148+
.NET 8+
149149
:::sh
150150
x new angular-spa ProjectName
151151
:::
@@ -157,22 +157,22 @@ x new angular-spa-netfx ProjectName
157157

158158
### mvcauth
159159

160-
.NET 6.0 MVC Website integrated with ServiceStack Auth
160+
.NET 8.0 MVC Website integrated with ServiceStack Auth
161161

162162
[![](/img/pages/auth/signin/mvcauth.png)](https://github.com/NetCoreTemplates/mvcauth)
163163

164-
.NET 6+
164+
.NET 8+
165165
:::sh
166166
x new mvcauth ProjectName
167167
:::
168168

169169
### mvcidentityserver
170170

171-
.NET 6.0 MVC Website integrated with ServiceStack using IdentityServer4 Auth
171+
.NET 8.0 MVC Website integrated with ServiceStack using IdentityServer4 Auth
172172

173173
[![](/img/pages/auth/signin/mvcidentityserver.png)](https://github.com/NetCoreTemplates/mvcidentityserver)
174174

175-
.NET 6+
175+
.NET 8+
176176
:::sh
177177
x new mvcidentityserver ProjectName
178178
:::
@@ -183,7 +183,7 @@ Nuxt.js SPA App with Bootstrap
183183

184184
[![](/img/pages/auth/signin/vue-nuxt.png)](https://github.com/NetCoreTemplates/vue-nuxt)
185185

186-
.NET 6+
186+
.NET 8+
187187
:::sh
188188
x new vue-nuxt ProjectName
189189
:::
@@ -199,7 +199,7 @@ x new vue-nuxt-netfx ProjectName
199199

200200
[![](/img/pages/auth/signin/script.png)](https://github.com/NetCoreTemplates/script)
201201

202-
.NET 6+
202+
.NET 8+
203203
:::sh
204204
x new script ProjectName
205205
:::
@@ -220,7 +220,7 @@ ServiceStack.Razor Bootstrap Website
220220

221221
[![](/img/pages/auth/signin/razor.png)](https://github.com/NetCoreTemplates/razor)
222222

223-
.NET 6+
223+
.NET 8+
224224
:::sh
225225
x new razor ProjectName
226226
:::
@@ -241,7 +241,7 @@ All new projects can be further customized with [mix](/mix-tool) dotnet tool to
241241

242242
## Creating new .NET 5 projects
243243

244-
If you're not yet ready to move to .NET 6 you can still create new projects of older versions of
244+
If you're not yet ready to move to .NET 8 you can still create new projects of older versions of
245245
the [.NET Core templates](https://github.com/NetCoreTemplates/).
246246

247247
Which can also be created from our online Project builder at: **servicestack.net/start?tag=net5**
@@ -280,7 +280,7 @@ Then either rename the project and folder names manually or copy over the origin
280280

281281
### Using older mix features
282282

283-
All [mix features](/mix-tool) have been rewritten to use .NET 6's new `HostingStartup` model going forward,
283+
All [mix features](/mix-tool) have been rewritten to use .NET 8's new `HostingStartup` model going forward,
284284
to help with migration please refer to the [mix diff](https://github.com/ServiceStack/mix/commit/b56746622aa1879e3e6a8cbf835e634f05db30db)
285285
showing how each of the existing mix configurations were converted to the new model.
286286

MyApp/_pages/messaging.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ If you'd instead prefer to develop stand-alone MQ Servers (i.e. without HTTP acc
5050

5151
|| .NET Core C# Worker Service Templates |
5252
|-|-|
53-
| [worker-rabbitmq](https://github.com/NetCoreTemplates/worker-rabbitmq) | .NET 6.0 Rabbit MQ Worker Service |
54-
| [worker-redismq](https://github.com/NetCoreTemplates/worker-redismq) | .NET 6.0 Redis MQ Worker Service |
55-
| [worker-servicebus](https://github.com/NetCoreTemplates/worker-servicebus) | .NET 6.0 Azure Service Bus MQ Worker Service |
56-
| [worker-sqs](https://github.com/NetCoreTemplates/worker-sqs) | .NET 6.0 AWS SQS MQ Worker Service |
53+
| [worker-rabbitmq](https://github.com/NetCoreTemplates/worker-rabbitmq) | .NET 8.0 Rabbit MQ Worker Service |
54+
| [worker-redismq](https://github.com/NetCoreTemplates/worker-redismq) | .NET 8.0 Redis MQ Worker Service |
55+
| [worker-servicebus](https://github.com/NetCoreTemplates/worker-servicebus) | .NET 8.0 Azure Service Bus MQ Worker Service |
56+
| [worker-sqs](https://github.com/NetCoreTemplates/worker-sqs) | .NET 8.0 AWS SQS MQ Worker Service |
5757

5858
## MQ Stats on Admin UI Dashboard
5959

MyApp/_pages/mix-tool.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ dotnet tool install --global x
1212

1313
The same functionality is also built into the Windows [app](/netcore-windows-desktop) dotnet tool, both can be updated to the latest version with:
1414

15-
.NET 6.0 (Windows/macOS/Linux):
15+
.NET 8.0 (Windows/macOS/Linux):
1616

1717
:::sh
1818
dotnet tool update -g x
1919
:::
2020

21-
.NET 6.0 (Windows x64):
21+
.NET 8.0 (Windows x64):
2222

2323
:::sh
2424
dotnet tool update -g app

MyApp/_pages/modular-startup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ title: Modular Startup
77
For more information on the earlier Modular Startup in ServiceStack **v5.x** see our [Legacy Modular Startup](/modular-startup-legacy) docs
88
:::
99

10-
Taking advantage of C# 9 top level statements and .NET 6 [WebApplication Hosting Model](https://gist.github.com/davidfowl/0e0372c3c1d895c3ce195ba983b1e03d), ServiceStack templates by utilize both these features to simplify configuring your AppHost in a modular way.
10+
Taking advantage of C# 9 top level statements and .NET 8 [WebApplication Hosting Model](https://gist.github.com/davidfowl/0e0372c3c1d895c3ce195ba983b1e03d), ServiceStack templates by utilize both these features to simplify configuring your AppHost in a modular way.
1111

1212
`Program.cs` becomes a script-like file since C# 9 top level statements are generating application entry point implicitly.
1313

@@ -73,7 +73,7 @@ you can view all available mix gists that can be added to projects with:
7373
x mix
7474
:::
7575

76-
.NET 6's idiom is incorporated into the [mix gist config files](https://gist.github.com/gistlyn/9b32b03f207a191099137429051ebde8) to adopt its `HostingStartup` which is better able to load modular Startup configuration without assembly scanning.
76+
.NET 8's idiom is incorporated into the [mix gist config files](https://gist.github.com/gistlyn/9b32b03f207a191099137429051ebde8) to adopt its `HostingStartup` which is better able to load modular Startup configuration without assembly scanning.
7777

7878
This is a standard ASP .NET Core feature that we can use to configure Mongo DB in any ASP .NET Core App with:
7979

MyApp/_pages/npm-new.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
22
slug: npm-new
3-
title: .NET 6.0 and ASP.NET Project Templates
3+
title: .NET 8.0 and ASP.NET Project Templates
44
---
55

66
There are a number of the most popular starting ServiceStack v5 Project Templates available in the GitHub organizations:
77

8-
- **.NET 6.0 C# Templates** - [github.com/NetCoreTemplates](https://github.com/NetCoreTemplates)
8+
- **.NET 8.0 C# Templates** - [github.com/NetCoreTemplates](https://github.com/NetCoreTemplates)
99
- **.NET Framework C# Templates** - [github.com/NetFrameworkTemplates](https://github.com/NetFrameworkTemplates)
1010
- **ASP.NET Core .NET Framework C# Templates** - [github.com/NetFrameworkCoreTemplates](https://github.com/NetFrameworkCoreTemplates)
1111

0 commit comments

Comments
 (0)