Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.0.0-beta.5</Version>
<Version>2.0.0-beta.6</Version>
<!-- SPDX license identifier for MIT -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- Other useful metadata -->
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ for building AWS Lambda functions.
| [**MinimalLambda**](./src/MinimalLambda/README.md) | [![NuGet](https://img.shields.io/nuget/v/MinimalLambda.svg)](https://www.nuget.org/packages/MinimalLambda) | [![Downloads](https://img.shields.io/nuget/dt/MinimalLambda.svg)](https://www.nuget.org/packages/MinimalLambda/) |
| [**MinimalLambda.Abstractions**](./src/MinimalLambda.Abstractions/README.md) | [![NuGet](https://img.shields.io/nuget/v/MinimalLambda.Abstractions.svg)](https://www.nuget.org/packages/MinimalLambda.Abstractions) | [![Downloads](https://img.shields.io/nuget/dt/MinimalLambda.Abstractions.svg)](https://www.nuget.org/packages/MinimalLambda.Abstractions/) |
| [**MinimalLambda.OpenTelemetry**](./src/MinimalLambda.OpenTelemetry/README.md) | [![NuGet](https://img.shields.io/nuget/v/MinimalLambda.OpenTelemetry.svg)](https://www.nuget.org/packages/MinimalLambda.OpenTelemetry) | [![Downloads](https://img.shields.io/nuget/dt/MinimalLambda.OpenTelemetry.svg)](https://www.nuget.org/packages/MinimalLambda.OpenTelemetry/) |
| [**MinimalLambda.Testing**](./src/MinimalLambda.Testing/README.md) | [![NuGet](https://img.shields.io/nuget/v/MinimalLambda.Testing.svg)](https://www.nuget.org/packages/MinimalLambda.Testing) | [![Downloads](https://img.shields.io/nuget/dt/MinimalLambda.Testing.svg)](https://www.nuget.org/packages/MinimalLambda.Testing/) |

### Envelopes Packages

Expand Down Expand Up @@ -105,7 +106,8 @@ public class GreetingService : IGreetingService
```

See the [examples directory](./examples/) for more complete examples, including middleware and
OpenTelemetry integration.
OpenTelemetry integration. For in-memory integration tests, use
[MinimalLambda.Testing](./docs/guides/testing.md) (a `WebApplicationFactory`-style runtime shim).

## Documentation

Expand Down
2 changes: 2 additions & 0 deletions docs/getting-started/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Before you begin, ensure you have:
- **[Installation](installation.md)** – Add the NuGet packages and configure your csproj.
- **[Your First Lambda](first-lambda.md)** – Walk through a handler, DI setup, and local testing.
- **[Core Concepts](core-concepts.md)** – Learn about the host lifecycle, middleware, and source generation.
- **Testing** – For in-memory, `WebApplicationFactory`-style integration tests, see
[MinimalLambda.Testing](../guides/testing.md).

Prefer to explore? Head directly to **[Guides](../guides/index.md)** or **[Examples](../examples/index.md)** for deeper dives.

Expand Down
1 change: 1 addition & 0 deletions docs/guides/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ Write comprehensive tests for your Lambda functions using xUnit, NSubstitute, an
- Testing handlers and middleware
- Integration testing
- Test naming conventions
- In-memory end-to-end testing with `MinimalLambda.Testing` (`WebApplicationFactory`-style runtime shim)

## Learning Path

Expand Down
Loading
Loading