Lambdajection 0.4.0-beta1

This is a prerelease version of Lambdajection.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Lambdajection --version 0.4.0-beta1
                    
NuGet\Install-Package Lambdajection -Version 0.4.0-beta1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Lambdajection" Version="0.4.0-beta1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Lambdajection" Version="0.4.0-beta1" />
                    
Directory.Packages.props
<PackageReference Include="Lambdajection" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Lambdajection --version 0.4.0-beta1
                    
#r "nuget: Lambdajection, 0.4.0-beta1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Lambdajection@0.4.0-beta1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Lambdajection&version=0.4.0-beta1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Lambdajection&version=0.4.0-beta1&prerelease
                    
Install as a Cake Tool

Write AWS Lambda Functions using Dependency Injection.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.10.0-beta3 3,629 3/30/2023
0.10.0-beta2 2,430 8/19/2022
0.10.0-beta1 1,955 5/12/2022
0.9.2 5,442 2/8/2022
0.9.1 790 1/27/2022
0.9.0 855 12/23/2021
0.9.0-beta5 1,153 11/19/2021
0.9.0-beta4 490 11/18/2021
0.9.0-beta3 347 11/17/2021
0.9.0-beta2 435 11/10/2021
0.9.0-beta1 310 11/1/2021
0.8.4 3,655 7/17/2021
0.8.3 839 6/24/2021
0.8.2 690 6/16/2021
0.8.1 486 6/15/2021
0.8.0 677 6/8/2021
0.8.0-beta5 424 5/28/2021
0.8.0-beta4 1,034 4/29/2021
0.8.0-beta3 486 4/1/2021
0.8.0-beta2 396 4/1/2021
0.8.0-beta1 337 3/26/2021
0.7.0 644 3/6/2021
0.7.0-beta4 432 3/2/2021
0.7.0-beta3 463 2/23/2021
0.7.0-beta2 359 2/23/2021
0.7.0-beta1 476 2/2/2021
0.6.0 638 1/5/2021
0.6.0-beta4 418 12/29/2020
0.6.0-beta3 448 12/5/2020
0.6.0-beta2 411 12/5/2020
0.6.0-beta1 481 11/28/2020
0.5.0 657 11/10/2020
0.5.0-beta3 445 10/26/2020
0.5.0-beta2 452 10/17/2020
0.5.0-beta1 440 10/9/2020
0.4.0 661 10/2/2020
0.4.0-beta3 448 10/1/2020
0.4.0-beta2 457 9/25/2020
0.4.0-beta1 483 9/21/2020
0.3.0 770 9/4/2020
0.3.0-beta3 449 8/28/2020
0.3.0-beta2 431 8/28/2020
0.3.0-beta1 527 8/22/2020
0.2.1 716 8/11/2020
0.2.0 678 8/5/2020
0.1.9 738 8/1/2020
0.1.8 657 7/31/2020
0.1.7 670 7/31/2020
0.1.6 892 7/31/2020
0.1.5-alpha 433 7/31/2020
0.1.4-alpha 458 7/31/2020

This release introduces the following:

- You can now control the serializer used on the Lambda by setting the Serializer argument in the Lambda attribute.  If your Lambda targets netcoreapp3.1, then DefaultLambdaJsonSerializer from Amazon.Lambda.Serialization.SystemTextJson is used by default.
- The startup argument in the Lambda attribute is now a constructor argument, rather than a named one.  This was done to enforce setting the argument earlier in the pipeline, rather than just failing during code generation.
- File-based configuration is now turned off by default in favor of environment variables-based configuration.  If you need to add file-based configuration back, you can specify a custom ILambdaConfigFactory type to the Lambda attribute's new ConfigFactory argument.
- Initialize data asynchronously or perform a startup task before the Lambda runs using initialization services!  Implement ILambdaInitializationService and add it to the container as a singleton.