Skip to content

Commit 9aef901

Browse files
committed
Bumped up Authenticatio0n number in main Readme.md file
1 parent f6baf21 commit 9aef901

File tree

1 file changed

+35
-35
lines changed

1 file changed

+35
-35
lines changed

README.md

Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
# Samples for ASP.NET Core 8.0
1+
# Samples for ASP.NET Core 8.0
22

33
> [!NOTE]
44
> This repository is WIP. I am updating all the previous samples from .NET 6/7 to .NET 8. Check the previous stable branch ([6.0](https://github.com/dodyg/practical-aspnetcore/tree/net6.0/)) if you want to browse the existing stable samples that contains also .NET 7/8 samples.
55
6-
Greetings from Cairo, Egypt. You can [sponsor](https://github.com/sponsors/dodyg) this project [here](https://github.com/sponsors/dodyg).
6+
Greetings from Cairo, Egypt. You can [sponsor](https://github.com/sponsors/dodyg) this project [here](https://github.com/sponsors/dodyg).
77

88
## Previous versions
99

@@ -13,7 +13,7 @@ Greetings from Cairo, Egypt. You can [sponsor](https://github.com/sponsors/dodyg
1313

1414
| Section | | |
1515
| ----------------------------------------------------------------------- | --- | ---------------------------------------------------------------------------- |
16-
| [Authentication](/projects/authentication) | 4 | |
16+
| [Authentication](/projects/authentication) | 5 | |
1717
| [Blazor Client Side (Web Assembly)](/projects/blazor-wasm) | 22 | .NET8 (WIP), Components, Data Binding |
1818
| [Blazor Server](/projects/blazor-ss) | 16 | Localization |
1919
| [Blazor Server Side Render](/projects/blazor-ssr) | 22 | |
@@ -72,83 +72,83 @@ To run these samples, simply open your command line console, go to each folder a
7272

7373
### Misc (6)
7474

75-
- [Application Environment](/projects/application-environment)
75+
- [Application Environment](/projects/application-environment)
7676

77-
This sample shows how to obtain application environment information (target framework, etc).
77+
This sample shows how to obtain application environment information (target framework, etc).
7878

79-
- [Show Connection info](/projects/connection-info)
79+
- [Show Connection info](/projects/connection-info)
8080

81-
Enumerate the connection information of a HTTP request.
81+
Enumerate the connection information of a HTTP request.
8282

83-
- [Password Hasher server](/projects/password-hasher)
83+
- [Password Hasher server](/projects/password-hasher)
8484

85-
Give it a string and it will generate a secure hash for you, e.g. `localhost:5000?password=mypassword`.
85+
Give it a string and it will generate a secure hash for you, e.g. `localhost:5000?password=mypassword`.
8686

87-
- [Version info](/projects/version)
87+
- [Version info](/projects/version)
8888

89-
Show various version info of the framework your system is running on.
89+
Show various version info of the framework your system is running on.
9090

91-
- [IApplicationLifetime](/projects/i-application-lifetime)
91+
- [IApplicationLifetime](/projects/i-application-lifetime)
9292

93-
Responds to application startup and shutdown.
93+
Responds to application startup and shutdown.
9494

95-
We are using `IApplicationLifetime` that trigger events during application startup and shutdown.
95+
We are using `IApplicationLifetime` that trigger events during application startup and shutdown.
9696

9797
- [Short Circuit](map-short-circuit)
9898

99-
Use `MapShortCircuit` or `.ShortCircuit()` to efficiently respond to a request without going through a middleware pipeline run.
99+
Use `MapShortCircuit` or `.ShortCircuit()` to efficiently respond to a request without going through a middleware pipeline run.
100100

101101
### Server-Sent Events (1)
102102

103-
- [Forever Server](/projects/sse)
103+
- [Forever Server](/projects/sse)
104104

105-
This server will send a 'hello world' greeting forever.
105+
This server will send a 'hello world' greeting forever.
106106

107107
### Markdown (2)
108108

109-
- [Markdown server](/projects/markdown-server)
109+
- [Markdown server](/projects/markdown-server)
110110

111-
Serve markdown file as html file. You will see how you can create useful app using a few basic facilities in aspnetcore.
111+
Serve markdown file as html file. You will see how you can create useful app using a few basic facilities in aspnetcore.
112112

113-
We take `"Markdig"` as dependency.
113+
We take `"Markdig"` as dependency.
114114

115-
- [Markdown server - implemented as middleware component](/projects/markdown-server-middleware)
115+
- [Markdown server - implemented as middleware component](/projects/markdown-server-middleware)
116116

117-
Serve markdown file as html file. It has the same exact functionality as [Markdown server](/projects/markdown-server) but implemented using middleware component.
117+
Serve markdown file as html file. It has the same exact functionality as [Markdown server](/projects/markdown-server) but implemented using middleware component.
118118

119-
We take `"Markdig"` as dependency.
119+
We take `"Markdig"` as dependency.
120120

121121
### Utils (3)
122122

123-
- [Status Codes](/projects/utils/http-status-codes)
123+
- [Status Codes](/projects/utils/http-status-codes)
124124

125-
Here we contrast between the usage of `Microsoft.AspNetCore.Http.StatusCodes` and `System.Net.HttpStatusCode`.
125+
Here we contrast between the usage of `Microsoft.AspNetCore.Http.StatusCodes` and `System.Net.HttpStatusCode`.
126126

127-
- [MediaTypeNames](/projects/utils/media-type-names)
127+
- [MediaTypeNames](/projects/utils/media-type-names)
128128

129-
This class provides convenient constants for some common MIME types. It's not extensive by any means however `MediaTypeNames.Text.Html` and `MediaTypeNames.Application.Json` come handy.
129+
This class provides convenient constants for some common MIME types. It's not extensive by any means however `MediaTypeNames.Text.Html` and `MediaTypeNames.Application.Json` come handy.
130130

131-
- [MediaTypeNames - 2](/projects/utils/media-type-names-2)
131+
- [MediaTypeNames - 2](/projects/utils/media-type-names-2)
132132

133-
Using `FileExtensionContentTypeProvider` to obtain the correct MIME type of a filename extension.
133+
Using `FileExtensionContentTypeProvider` to obtain the correct MIME type of a filename extension.
134134

135135
### Device Detection (1)
136136

137137
The samples in this section rely on [Wangkanai.Detection](https://github.com/wangkanai/Detection) library.
138138

139-
- [Device Detection](/projects/device-detection)
139+
- [Device Detection](/projects/device-detection)
140140

141-
This is the most basic device detection. You will be able to detect whether the client is a desktop or a mobile client.
141+
This is the most basic device detection. You will be able to detect whether the client is a desktop or a mobile client.
142142

143143
### Image Sharp (1)
144144

145145
All these samples require `SixLabors.ImageSharp.Web` middleware package. This middleware is an excelent tool to process your day to day image processing need.
146146

147-
- [Image-Sharp](/projects/image-sharp)
147+
- [Image-Sharp](/projects/image-sharp)
148148

149-
This example shows how to enable image resizing functionality to your site. It's super easy and the middleware takes care of caching, etc.
149+
This example shows how to enable image resizing functionality to your site. It's super easy and the middleware takes care of caching, etc.
150150

151151
## Misc
152152

153-
- [Contributor Guidelines](https://github.com/dodyg/practical-aspnetcore/blob/master/CONTRIBUTING.md)
154-
- [Code of Conduct](https://github.com/dodyg/practical-aspnetcore/blob/master/CODE_OF_CONDUCT.md)
153+
- [Contributor Guidelines](https://github.com/dodyg/practical-aspnetcore/blob/master/CONTRIBUTING.md)
154+
- [Code of Conduct](https://github.com/dodyg/practical-aspnetcore/blob/master/CODE_OF_CONDUCT.md)

0 commit comments

Comments
 (0)