You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: MyApp/_includes/empty-projects.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ If you don't have the [x dotnet tool](/dotnet-new) installed, the quickest way t
9
9
10
10
There are a few different ways you can create empty ServiceStack projects ordered by their level of emptiness.
11
11
12
-
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:
12
+
To write a minimal .NET 10 Web App to your current directory, [mix](/mix-tool) in the **[init](https://gist.github.com/gistlyn/8026c4c2a7202b99885539109145e12b)** gist files to your current directory:
Copy file name to clipboardExpand all lines: MyApp/_pages/admin-ui-profiling.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -170,7 +170,7 @@ HttpClient profiling is implemented a little differently then other events in th
170
170
171
171
### JsonApiClient Profiling
172
172
173
-
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:
173
+
Although we're able to provide richer profiling for our .NET 10+ [JsonApiClient](/csharp-client#jsonapiclient) which has access to typed Request DTOs for submitting API Requests:
Copy file name to clipboardExpand all lines: MyApp/_pages/auth/admin-apikeys.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,9 @@
1
1
---
2
-
title: Simple Auth for .NET 8 Apps
2
+
title: Simple Auth for .NET 10 Apps
3
3
---
4
4
5
5
With ServiceStack now fully [integrated with ASP.NET Identity Auth](/auth/identity-auth),
6
-
our latest [.NET 8 Tailwind Templates](/start) offer a full-featured Auth Configuration complete with User Registration,
6
+
our latest [.NET 10 Tailwind Templates](/start) offer a full-featured Auth Configuration complete with User Registration,
7
7
Login, Password Recovery, Two Factory Auth, and more.
8
8
9
9
Whilst great for Web Applications that need it, it neglects the class of Apps which don't need User Auth and
@@ -12,11 +12,11 @@ the additional complexity it brings inc. Identity and Password Management, EF Mi
12
12
For these stand-alone Apps, Microservices and Docker Appliances that would still like to restrict Access to their APIs
13
13
but don't need the complexity of ASP .NET Core's Authentication machinery, a simpler Auth Story would be preferred.
14
14
15
-
With the introduction of API Keys in this release we're able to provide a simpler Auth Story for .NET 8 Microservices
15
+
With the introduction of API Keys in this release we're able to provide a simpler Auth Story for .NET 10 Microservices
16
16
that's easy for **Admin** Users to manage and control which trusted clients and B2B Integrations can access their functionality.
17
17
18
18
:::youtube 0ceU91ZBhTQ
19
-
Simple Auth Story with API Keys ideal for .NET 8 Microservices
19
+
Simple Auth Story with API Keys ideal for .NET 10 Microservices
20
20
:::
21
21
22
22
The easiest way to get started is by creating a new Empty project with API Keys enabled with your preferred database to store the API Keys in. SQLite is a good choice for stand-alone Apps as it doesn't require any infrastructure dependencies.
0 commit comments