openmedstack.neventstore.lambda 2.5.1

dotnet add package openmedstack.neventstore.lambda --version 2.5.1
                    
NuGet\Install-Package openmedstack.neventstore.lambda -Version 2.5.1
                    
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="openmedstack.neventstore.lambda" Version="2.5.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="openmedstack.neventstore.lambda" Version="2.5.1" />
                    
Directory.Packages.props
<PackageReference Include="openmedstack.neventstore.lambda" />
                    
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 openmedstack.neventstore.lambda --version 2.5.1
                    
#r "nuget: openmedstack.neventstore.lambda, 2.5.1"
                    
#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 openmedstack.neventstore.lambda@2.5.1
                    
#: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=openmedstack.neventstore.lambda&version=2.5.1
                    
Install as a Cake Addin
#tool nuget:?package=openmedstack.neventstore.lambda&version=2.5.1
                    
Install as a Cake Tool

AWS Lambda Empty Function Project

This starter project consists of:

  • Function.cs - class file containing a class with a single function handler method
  • aws-lambda-tools-defaults.json - default argument settings for use with Visual Studio and command line deployment tools for AWS

You may also have a test project depending on the options selected.

The generated function handler is a simple method accepting a string argument that returns the uppercase equivalent of the input string. Replace the body of this method, and parameters, to suit your needs.

Here are some steps to follow from Visual Studio:

To deploy your function to AWS Lambda, right click the project in Solution Explorer and select Publish to AWS Lambda.

To view your deployed function open its Function View window by double-clicking the function name shown beneath the AWS Lambda node in the AWS Explorer tree.

To perform testing against your deployed function use the Test Invoke tab in the opened Function View window.

To configure event sources for your deployed function, for example to have your function invoked when an object is created in an Amazon S3 bucket, use the Event Sources tab in the opened Function View window.

To update the runtime configuration of your deployed function use the Configuration tab in the opened Function View window.

To view execution logs of invocations of your function use the Logs tab in the opened Function View window.

Here are some steps to follow to get started from the command line:

Once you have edited your template and code you can deploy your application using the Amazon.Lambda.Tools Global Tool from the command line.

Install Amazon.Lambda.Tools Global Tools if not already installed.

    dotnet tool install -g Amazon.Lambda.Tools

If already installed check if new version is available.

    dotnet tool update -g Amazon.Lambda.Tools

Execute unit tests

    cd "openmedstack.neventstore.lambda/test/openmedstack.neventstore.lambda.Tests"
    dotnet test

Deploy function to AWS Lambda

    cd "openmedstack.neventstore.lambda/src/openmedstack.neventstore.lambda"
    dotnet lambda deploy-function
Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in 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
2.5.1 35 7/30/2026
2.5.0 36 7/30/2026
1.0.0 116 4/23/2026

Change target framework to net10.0.