serverless-multi-dotnet-csod

0.9.24 • Public • Published

Serverless Multi DotNet

serverless npm version license

A Serverless plugin to pack all your C# lambdas functions that are spread to multiple CS projects.

This plugin will go over all of your functions that have .net core 2.0 runtime defined in serverless.yml file take the value from package.artifact

It would split the value on first path separator and use first part of a string as location for a CS project folder and the rest as a path for a file.

So for example your have function with value like this:

package:
 artifact: functionproject-folder/publish/deploy-package.zip

It equivalent to going into functionproject-folder and executing dotnet lambda package -o publish/deploy-package.zip

If you want to execute serverless deploy for dotnet 6, you should add to serverless.yml: provider.runtime=dotnet6

If you want to execute serverless deploy for arm64 architecture, you should add to serverless.yml: provider.architecture=arm64

If you want to execute serverless deploy with no repacking of C# projects, you should add --param="nopack=true" option

As of version 0.9, the plugin now supports supplying a projectFolder setting for scenarios when a more complex folder structure is needed.

The projectFolder value must be a parent folder of the artifact location.

E.g.

package:
 artifact: src/app/functionproject-folder/publish/deploy-package.zip
 projectFolder: src/app/functionproject-folder 

Install

npm install serverless-multi-dotnet-csod

Add the plugin to your serverless.yml file:

plugins:
  - serverless-multi-dotnet-csod

Note

This work is based on @fruffin serverless-dotnet plugin

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.9.24
    0
    • latest

Version History

Package Sidebar

Install

npm i serverless-multi-dotnet-csod

Weekly Downloads

2

Version

0.9.24

License

Apache-2.0

Unpacked Size

35.3 kB

Total Files

8

Last publish

Collaborators

  • gelkayam