Deploying .NET
Adios supports .NET Core and .NET 5+ runtimes for your C# or F# applications.
Configuration
Create an adios.yaml file in the root of your project:
name: my-dotnet-api
runtime: dotnet:8.0
build_cmd:
- dotnet publish -c Release -o out
start_cmd:
- dotnet out/MyApp.dll
env:
ASPNETCORE_URLS: http://*:$PORT
Deploy
$ adios up