Skip to content

Commit 119d8e2

Browse files
remove <a name="..."></a> tags are used to create anchor links
1 parent 2f4d245 commit 119d8e2

File tree

1 file changed

+27
-25
lines changed

1 file changed

+27
-25
lines changed

README.md

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,26 @@ application development.
1919

2020
## Table of Contents
2121

22-
1. [Supported Platforms](#supported-platforms)
23-
2. [Prerequisites](#prerequisites)
24-
3. [Installation](#installation)
25-
4. [Usage](#usage)
26-
- [LocalStack.Client.Extensions (Recommended)](#localstack-client-extensions)
27-
- [Installation](#extensions-installation)
28-
- [Usage](#extensions-usage)
29-
- [About AddAwsService](#extensions-usage-about-addawsservice)
30-
- [useServiceUrl Parameter](#useserviceurl)
31-
- [Standalone Initialization](#standalone-initialization)
32-
- [Microsoft.Extensions.DependencyInjection Initialization](#di)
33-
5. [Developing](#developing)
34-
- [About Sandbox Applications](#about-sandboxes)
22+
1. [LocalStack .Net Core and .Net Framework Client](#localstack-net-core-and-net-framework-client)
23+
2. [Continuous Integration](#continuous-integration)
24+
3. [Supported Platforms](#supported-platforms)
25+
4. [Why LocalStack.NET Client?](#why-localstacknet-client)
26+
5. [Prerequisites](#prerequisites)
27+
6. [Installation](#installation)
28+
- [Recommended: LocalStack.Client.Extensions](#recommended-localstackclientextensions)
29+
- [Base Library: LocalStack.Client](#base-library-localstackclient)
30+
7. [Packages Overview](#packages-overview)
31+
8. [Usage](#usage)
32+
- [Configuration](#configuration)
33+
- [Integrating with Dependency Injection](#integrating-with-dependency-injection)
34+
9. [Developing](#developing)
35+
- [Building the Project](#building-the-project)
36+
- [Sandbox Applications](#sandbox-applications)
3537
- [Running Tests](#running-tests)
36-
6. [Changelog](#changelog)
37-
7. [License](#license)
38+
10. [Changelog](#changelog)
39+
11. [License](#license)
3840

39-
## <a name="supported-platforms"></a> Supported Platforms
41+
## Supported Platforms
4042

4143
- [.NET 7](https://dotnet.microsoft.com/download/dotnet/7.0)
4244
- [.NET 6](https://dotnet.microsoft.com/download/dotnet/6.0)
@@ -55,13 +57,13 @@ application development.
5557

5658
- **Enhanced Development Speed:** LocalStack.NET reduces boilerplate and manual configurations, speeding up the development process.
5759

58-
## <a name="prerequisites"></a> Prerequisites
60+
## Prerequisites
5961

6062
To utilize this library, you need to have LocalStack running. While LocalStack can be installed directly on your machine and accessed via the `localstack` cli, the recommended approach is to run LocalStack using Docker or `docker-compose`.
6163

6264
For detailed installation and setup instructions, please refer to the [official LocalStack installation guide](https://docs.localstack.cloud/getting-started/installation/).
6365

64-
## <a name="installation"></a> Installation
66+
## Installation
6567

6668
### Recommended: LocalStack.Client.Extensions
6769

@@ -99,14 +101,14 @@ Or use `dotnet cli`
99101
dotnet add package LocalStack.Client
100102
```
101103

102-
## <a name="packages-overview"></a> Packages Overview
104+
## Packages Overview
103105

104106
| Package | Stable | Nightly |
105107
| ---------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
106108
| LocalStack.Client | [![NuGet](https://img.shields.io/nuget/v/LocalStack.Client.svg)](https://www.nuget.org/packages/LocalStack.Client/) | [![MyGet](https://img.shields.io/myget/localstack-dotnet-client/v/LocalStack.Client.svg?label=myget)](https://www.myget.org/feed/localstack-dotnet-client/package/nuget/LocalStack.Client) |
107109
| LocalStack.Client.Extensions | [![NuGet](https://img.shields.io/nuget/v/LocalStack.Client.Extensions.svg)](https://www.nuget.org/packages/LocalStack.Client.Extensions/) | [![MyGet](https://img.shields.io/myget/localstack-dotnet-client/v/LocalStack.Client.Extensions.svg?label=myget)](https://www.myget.org/feed/localstack-dotnet-client/package/nuget/LocalStack.Client.Extensions) |
108110

109-
## <a name="usage"></a> Usage
111+
## Usage
110112

111113
`LocalStack.NET` is a library that provides a wrapper around the [aws-sdk-net](https://github.com/aws/aws-sdk-net). This means you can use it in a similar way to the `AWS SDK for .NET` and to [AWSSDK.Extensions.NETCore.Setup](https://docs.aws.amazon.com/sdk-for-net/latest/developer-guide/net-dg-config-netcore.html) with a few differences. For more on how to use the AWS SDK for .NET, see [Getting Started with the AWS SDK for .NET](https://docs.aws.amazon.com/sdk-for-net/v3/developer-guide/net-dg-setup.html).
112114

@@ -174,7 +176,7 @@ services.AddAwsService<IAmazonIoTJobsDataPlane>(useServiceUrl: true);
174176

175177
```
176178

177-
## <a name="developing"></a> Developing
179+
## Developing
178180

179181
We appreciate contributions in the form of feedback, bug reports, and pull requests.
180182

@@ -194,7 +196,7 @@ Linux
194196
./build.sh
195197
```
196198

197-
### <a name="about-sandboxes"></a> Sandbox Applications
199+
### Sandbox Applications
198200

199201
The LocalStack .NET repository includes several sandbox console applications located in [tests/sandboxes](https://github.com/localstack-dotnet/localstack-dotnet-client/tree/master/tests/sandboxes)
200202
. These applications serve both as testing tools and as examples.
@@ -203,7 +205,7 @@ These sandbox applications showcase various initialization methods for `LocalSta
203205

204206
To interact with a LocalStack container, use the [LocalStack.Container](https://github.com/localstack-dotnet/localstack-dotnet-client/tree/master/tests/sandboxes/LocalStack.Container) console application. This application leverages [testcontainers-dotnet](https://github.com/testcontainers/testcontainers-dotnets) to initialize LocalStack. Start the LocalStack.Container application first, then run any of the sandbox applications to experiment.
205207

206-
### <a name="running-tests"></a> Running Tests
208+
### Running Tests
207209

208210
To execute the tests, use the commands below:
209211

@@ -219,10 +221,10 @@ Linux
219221
./build.sh --target=tests
220222
```
221223

222-
## <a name="changelog"></a> Changelog
224+
## Changelog
223225

224226
Please refer to [`CHANGELOG.md`](CHANGELOG.md) to see the complete list of changes for each release.
225227

226-
## <a name="license"></a> License
228+
## License
227229

228230
Licensed under MIT, see [LICENSE](LICENSE) for the full text.

0 commit comments

Comments
 (0)