Skip to content

Commit 8c5c15a

Browse files
committed
Update why-servicestack.md
1 parent 5e88646 commit 8c5c15a

File tree

1 file changed

+23
-18
lines changed

1 file changed

+23
-18
lines changed

MyApp/_pages/why-servicestack.md

Lines changed: 23 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Developed in the modern age, ServiceStack provides an alternate, cleaner POCO-dr
99

1010
### Features Overview
1111

12-
ServiceStack is a simple, fast, versatile and highly-productive full-featured [Web](https://razor.netcore.io) and
12+
ServiceStack is a simple, fast, versatile and highly-productive full-featured [Web](https://blazor-vue.web-templates.io) and
1313
[Web Services](/web-services) Framework that's
1414
thoughtfully-architected to [reduce artificial complexity](/autoquery/why-not-odata#why-not-complexity) and promote
1515
[remote services best-practices](/advantages-of-message-based-web-services)
@@ -78,7 +78,7 @@ the most productive development experience for developing .NET to .NET Web Servi
7878

7979
### Generate Instant Typed APIs from within all Major IDEs!
8080

81-
ServiceStack now [integrates with all Major IDE's](/add-servicestack-reference.html) used for creating the best native experiences
81+
ServiceStack now [integrates with all Major IDE's](/add-servicestack-reference) used for creating the best native experiences
8282
on the most popular platforms to enable a highly productive dev workflow for consuming Web Services, making ServiceStack the ideal
8383
back-end choice for powering rich, native iPhone and iPad Apps on iOS with Swift, Mobile and Tablet Apps on the Android platform
8484
with Java, OSX Desktop Applications as well as targeting the most popular .NET PCL platforms including Xamarin.iOS, Xamarin.Android,
@@ -93,29 +93,29 @@ The **ServiceStack** Rider plugin is installable directly from JetBrains Marketp
9393
#### [VS.NET integration with ServiceStackVS](/create-your-first-webservice#step-1-download-and-install-servicestackvs)
9494

9595
Providing instant Native Typed API's for
96-
[C#](/csharp-add-servicestack-reference.html),
97-
[TypeScript](/typescript-add-servicestack-reference.html),
98-
[F#](/fsharp-add-servicestack-reference.html) and
99-
[VB.NET](/vbnet-add-servicestack-reference.html)
96+
[C#](/csharp-add-servicestack-reference),
97+
[TypeScript](/typescript-add-servicestack-reference),
98+
[F#](/fsharp-add-servicestack-reference) and
99+
[VB.NET](/vbnet-add-servicestack-reference)
100100
directly in Visual Studio for the
101101
[most popular .NET platforms](https://github.com/ServiceStackApps/HelloMobile) including iOS and Android using
102102
[Xamarin.iOS](https://github.com/ServiceStackApps/HelloMobile#xamarinios-client) and
103103
[Xamarin.Android](https://github.com/ServiceStackApps/HelloMobile#xamarinandroid-client) on Windows.
104104

105105
#### [Xamarin Studio integration with ServiceStackXS](/csharp-add-servicestack-reference.html#xamarin-studio)
106106

107-
Providing [C# Native Types](/csharp-add-servicestack-reference.html)
107+
Providing [C# Native Types](/csharp-add-servicestack-reference)
108108
support for developing iOS and Android mobile Apps using
109109
[Xamarin.iOS](https://github.com/ServiceStackApps/HelloMobile#xamarinios-client) and
110110
[Xamarin.Android](https://github.com/ServiceStackApps/HelloMobile#xamarinandroid-client) with
111111
[Xamarin Studio](https://www.xamarin.com/studio) on OSX. The **ServiceStackXS** plugin also provides a rich web service
112112
development experience developing Client applications with
113113
[Mono Develop on Linux](/csharp-add-servicestack-reference.html#xamarin-studio-for-linux)
114114

115-
#### [Android Studio integration with ServiceStack Plugin](/java-add-servicestack-reference.html)
115+
#### [Android Studio integration with ServiceStack Plugin](/java-add-servicestack-reference)
116116

117-
Providing [an instant Native Typed API in Java](/java-add-servicestack-reference.html)
118-
and [Kotlin](/kotlin-add-servicestack-reference.html)
117+
Providing [an instant Native Typed API in Java](/java-add-servicestack-reference)
118+
and [Kotlin](/kotlin-add-servicestack-reference)
119119
including idiomatic Java Generic Service Clients supporting Sync and Async Requests by leveraging Android's AsyncTasks to enable the creation of services-rich and responsive native Java or Kotlin Mobile Apps on the Android platform - directly from within Android Studio!
120120

121121
#### [JetBrains IDEs integration with ServiceStack IDEA plugin](/java-add-servicestack-reference.html#install-servicestack-idea-from-the-plugin-repository)
@@ -124,7 +124,7 @@ The ServiceStack IDEA plugin is installable directly from IntelliJ's Plugin repo
124124

125125
#### [Eclipse integration with ServiceStackEclipse](https://github.com/ServiceStack/ServiceStack.Java/tree/master/src/ServiceStackEclipse#eclipse-integration-with-servicestack)
126126

127-
The unmatched productivity offered by [Java Add ServiceStack Reference](/java-add-servicestack-reference.html) is also available in the
127+
The unmatched productivity offered by [Java Add ServiceStack Reference](/java-add-servicestack-reference) is also available in the
128128
[ServiceStackEclipse IDE Plugin](https://github.com/ServiceStack/ServiceStack.Java/tree/master/src/ServiceStackEclipse#eclipse-integration-with-servicestack) that's installable
129129
from the [Eclipse MarketPlace](https://marketplace.eclipse.org/content/servicestackeclipse) to provide deep integration of Add ServiceStack Reference with Eclipse Java Maven Projects
130130
enabling Java Developers to effortlessly Add and Update the references of their evolving remote ServiceStack Web Services.
@@ -248,7 +248,7 @@ public class CustomerService : Service
248248

249249
```
250250

251-
### [Calling the above REST Service from any C#/.NET Client](/csharp-add-servicestack-reference.html)
251+
### [Calling the above REST Service from any C#/.NET Client](/csharp-add-servicestack-reference)
252252

253253
No code-gen required, can re-use above Server DTOs:
254254

@@ -281,9 +281,9 @@ all = client.Get(new GetCustomers()); // Count = 0
281281
Same code also works with [Android, iOS, Xamarin.Forms, UWP and WPF clients](https://github.com/ServiceStackApps/HelloMobile).
282282

283283
::: info
284-
[F#](/fsharp-add-servicestack-reference.html) and
285-
[VB.NET](/vbnet-add-servicestack-reference.html) can re-use same
286-
[.NET Service Clients](/csharp-client.html) and DTOs
284+
[F#](/fsharp-add-servicestack-reference) and
285+
[VB.NET](/vbnet-add-servicestack-reference) can re-use same
286+
[.NET Service Clients](/csharp-client) and DTOs
287287
:::
288288

289289
### [Calling from TypeScript](/typescript-add-servicestack-reference.html#ideal-typed-message-based-api)
@@ -429,9 +429,10 @@ of different formats, including:
429429
- [gRPC](/grpc/)
430430
- [SOAP 1.1/1.2](/soap-support)
431431
- HTML
432-
- [HTML5 Report Format](/html5reportformat)
433-
- [Sharp Pages](https://sharpscript.net/docs/script-pages)
432+
- [Auto HTML API](/auto-html-api)
433+
- [Blazor](https://blazor-vue.web-templates.io)
434434
- [Razor](https://razor.netcore.io/)
435+
- [Sharp Pages](https://sharpscript.net/docs/script-pages)
435436
- [Markdown Razor](/markdown-razor)
436437

437438
### Multiple Endpoints
@@ -449,12 +450,16 @@ Whilst ServiceStack is fundamentally a premier HTTP Framework, its Services can
449450
In addition to supporting multiple formats and endpoints, ServiceStack can also be hosted within a multitude of different hosting options:
450451

451452
#### Windows, OSX or Linux
453+
- **.NET 8+**
454+
- [ASP .NET Identity Auth Templates](https://servicestack.net/start)
455+
- [ServiceStack Auth Templates](https://servicestack.net/start-auth#projects)
456+
452457
- **.NET Core 2.1+**
453458
- [Web App or SelfHost](https://github.com/NetCoreApps/LiveDemos#servicestack-net-core-live-demos)
454459
- [Worker Service](/messaging#worker-service-templates)
455460

456461
#### Windows
457-
- **.NET Framework 4.5+**
462+
- **.NET Framework 4.7.2+**
458463
- [ASP.NET Core 2.1 LTS](/templates/corefx)
459464
- [Classic ASP.NET System.Web](https://github.com/ServiceStackApps/LiveDemos#live-servicestack-demos)
460465
- [Stand-alone, Self-Hosted HttpListener](/self-hosting)

0 commit comments

Comments
 (0)