From 86dd375a9c44073e81cb5be90062a83d9580cc42 Mon Sep 17 00:00:00 2001 From: Harald Wolff Date: Wed, 2 Dec 2020 14:51:13 +0100 Subject: [PATCH] build.ln file created --- build.ln | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 build.ln diff --git a/build.ln b/build.ln new file mode 100644 index 0000000..b260fff --- /dev/null +++ b/build.ln @@ -0,0 +1,44 @@ +{ + "env": { + "DOTNET_SOURCE": "http://nuget.l--n.de/nuget/l--n/v3/index.json", + "CONFIGURATION": "Release" + }, + "stages": [ + { + "name": "setup", + "env": { + "SOME_ENV_VAR": "Some text", + }, + "commands": [ + "SH echo Setting up build environment", + "DOTNET analyze" + ] + }, + { + "name": "prepare", + "commands": [ + "DOTNET clean", + "DOTNET restore" + ] + }, + { + "name": "build", + "commands": [ + "DOTNET build" + ] + }, + { + "name": "pack_and_publish", + "commands": [ + "DOTNET pack", + "DOTNET publish" + ] + }, + { + "name": "push", + "commands": [ + "SH exit 2" + ] + } + ] +} \ No newline at end of file