Austin
06/02/2022, 1:58 PMdotnet
executable location that SST uses for running C# functions? I have an M1 Macbook and it requires some trickery to install .NET Core 3.1 involving putting it in a non-standard location from newer dotnet runtimes.
I need to run some 3.1 Lambda functions within an SST project, but it can’t find the runtime. Is there a way to configure this executable location?Arpad
06/02/2022, 2:07 PMArpad
06/02/2022, 2:08 PMAustin
06/02/2022, 3:20 PMprocess.env.PATH
in the SST stack code.Frank
which dotnet
in ur terminal, does that work for u?Austin
06/03/2022, 6:08 PMsst start
Frank
export PATH="/path/to/ur/dotnet:$PATH"
Frank
~/.zshrc
Frank
export PATH="/usr/local/lib/ruby/gems/3.0.0/bin:$PATH"
Austin
06/03/2022, 6:11 PMFrank