From 55216583f3fc5ffb582316771f34315b5c69a54f Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 26 Feb 2020 10:26:22 +0100 Subject: [PATCH] added template building --- Jenkinsfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index e548394..b0b35d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,8 +1,5 @@ pipeline { agent any - environment { - BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676') - } stages { stage('Build Projects') { steps { @@ -10,6 +7,9 @@ pipeline { dotnet build $i done''' sh 'dotnet build **/Demos.csproj' + sh '''for i in **/TemplateNamespace.csproj; do + dotnet build $i +done''' } } @@ -31,4 +31,7 @@ done''' } } + environment { + BAGET = credentials('3db850d0-e6b5-43d5-b607-d180f4eab676') + } } \ No newline at end of file