Skip to content

Commit 439b2da

Browse files
committed
[NuGet] Publish v6.0.0
1 parent 27ac014 commit 439b2da

27 files changed

+93
-69
lines changed

Apizr/Docs/Apizr.Docs/articles/config_polly.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ var resiliencePipelineBuilder = new ResiliencePipelineBuilder<HttpResponseMessag
9595
MaxRetryAttempts = 3,
9696
UseJitter = true,
9797
BackoffType = DelayBackoffType.Exponential
98-
}));
98+
});
9999
```
100100

101101
Now we have to register our pipeline:

Apizr/Docs/Apizr.Docs/articles/gettingstarted_classic.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## Defining
1+
## Watching
2+
3+
Please find this getting started video tutorial on YouTube about how to get started with Apizr:
4+
5+
> [!Video https://youtu.be/9qXekjZepLA]
6+
7+
## Defining
28

39
We could define our web api service just like:
410
```csharp

Apizr/Docs/Apizr.Docs/articles/gettingstarted_crud.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
## Defining
1+
## Watching
2+
3+
Please find this getting started video tutorial on YouTube about how to get started with Apizr:
4+
5+
> [!Video https://youtu.be/9qXekjZepLA]
6+
7+
## Defining
28

39
As we'll use the built-in yet defined ICrudApi, there's no more definition to do.
410

Apizr/Docs/Apizr.Docs/articles/index.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,8 @@
1111
> Find older versions into the Legacy section.
1212
1313
Apizr aims to provide a resilient and feature-rich web API client for .NET applications based on Refit, with the more resiliency we can, but without the boilerplate.
14-
It comes among other things with built-in support for retrying failed requests, handling network connectivity issues, caching responses, managing authentication, logging, and request prioritization, but there's more.
14+
It comes among other things with built-in support for retrying failed requests, handling network connectivity issues, caching responses, managing authentication, logging, and request prioritization, but there's more.
15+
16+
## Watching
17+
18+
Please find this [Apizr YouTube Playlist](https://www.youtube.com/playlist?list=PLP7ES6CZYy_3zYjmOJzi3K_GZlViorgUO) to watch the Apizr in action.

Apizr/Docs/Apizr.Docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Refit based web api client management, but resilient (retry, connectivity, cache, auth, log, priority, etc...)
44

5-
[![Read - Documentation](https://img.shields.io/badge/read-documentation-blue?style=for-the-badge)](articles/index.md "Go to project documentation") [![Browse - Source](https://img.shields.io/badge/browse-source_code-lightgrey?style=for-the-badge)](https://github.com/Respawnsive/Apizr "Go to project repository")
5+
[![Read - Documentation](https://img.shields.io/badge/read-documentation-blue?style=for-the-badge)](articles/index.md "Go to project documentation") [![Browse - Source](https://img.shields.io/badge/browse-source_code-lightgrey?style=for-the-badge)](https://github.com/Respawnsive/Apizr "Go to project repository") [![Watch - Tutorials](https://img.shields.io/badge/YouTube-red?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/playlist?list=PLP7ES6CZYy_3zYjmOJzi3K_GZlViorgUO "Watch tutorial videos")
66

77
## What
88

@@ -81,7 +81,7 @@ var resiliencePipelineBuilder = new ResiliencePipelineBuilder<HttpResponseMessag
8181
MaxRetryAttempts = 3,
8282
UseJitter = true,
8383
BackoffType = DelayBackoffType.Exponential
84-
}));
84+
});
8585
```
8686

8787
An instance of this managed api:

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Refit based web api client management, but resilient (retry, connectivity, cache, auth, log, priority, etc...)
44

5-
[![Read - Documentation](https://img.shields.io/badge/read-documentation-blue?style=for-the-badge)](https://apizr.net "Go to project documentation")
5+
[![Read - Documentation](https://img.shields.io/badge/read-documentation-blue?style=for-the-badge)](https://apizr.net "Go to project documentation") [![Watch - Tutorials](https://img.shields.io/badge/YouTube-red?style=for-the-badge&logo=youtube&logoColor=white)](https://www.youtube.com/playlist?list=PLP7ES6CZYy_3zYjmOJzi3K_GZlViorgUO "Watch tutorial videos")
66

77
## What
88

@@ -81,7 +81,7 @@ var resiliencePipelineBuilder = new ResiliencePipelineBuilder<HttpResponseMessag
8181
MaxRetryAttempts = 3,
8282
UseJitter = true,
8383
BackoffType = DelayBackoffType.Exponential
84-
}));
84+
});
8585
```
8686

8787
An instance of this managed api:

docs/articles/config_polly.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ <h4 id="registering-1">Registering</h4>
155155
MaxRetryAttempts = 3,
156156
UseJitter = true,
157157
BackoffType = DelayBackoffType.Exponential
158-
}));
158+
});
159159
</code></pre>
160160
<p>Now we have to register our pipeline:</p>
161161
<div class="tabGroup" id="tabgroup_1">

docs/articles/gettingstarted_classic.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@
7878
<div class="col-md-10">
7979
<article class="content wrap" id="_content" data-uid="">
8080

81+
<h2 id="watching">Watching</h2>
82+
<p>Please find this getting started video tutorial on YouTube about how to get started with Apizr:</p>
83+
<div class="embeddedvideo"><iframe src="https://youtu.be/9qXekjZepLA" frameborder="0" allowfullscreen="true"></iframe></div>
8184
<h2 id="defining">Defining</h2>
8285
<p>We could define our web api service just like:</p>
8386
<pre><code class="lang-csharp">// (Polly) Define a resilience pipeline key

docs/articles/gettingstarted_crud.html

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,9 @@
7878
<div class="col-md-10">
7979
<article class="content wrap" id="_content" data-uid="">
8080

81+
<h2 id="watching">Watching</h2>
82+
<p>Please find this getting started video tutorial on YouTube about how to get started with Apizr:</p>
83+
<div class="embeddedvideo"><iframe src="https://youtu.be/9qXekjZepLA" frameborder="0" allowfullscreen="true"></iframe></div>
8184
<h2 id="defining">Defining</h2>
8285
<p>As we'll use the built-in yet defined ICrudApi, there's no more definition to do.</p>
8386
<p>Here is what the provided interface looks like then:</p>

docs/articles/index.html

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ <h5>Note</h5>
8888
</div>
8989
<p>Apizr aims to provide a resilient and feature-rich web API client for .NET applications based on Refit, with the more resiliency we can, but without the boilerplate.
9090
It comes among other things with built-in support for retrying failed requests, handling network connectivity issues, caching responses, managing authentication, logging, and request prioritization, but there's more.</p>
91+
<h2 id="watching">Watching</h2>
92+
<p>Please find this <a href="https://www.youtube.com/playlist?list=PLP7ES6CZYy_3zYjmOJzi3K_GZlViorgUO">Apizr YouTube Playlist</a> to watch the Apizr in action.</p>
9193

9294
</article>
9395
</div>

0 commit comments

Comments
 (0)