jenkins file, and let franz be owned by the greyn

This commit is contained in:
Adam R Grey 2022-11-30 16:30:11 -05:00
parent b82885a3c5
commit 5994439f9e
2 changed files with 15 additions and 1 deletions

14
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,14 @@
pipeline {
agent any
tools {
dotnetsdk 'dotnet6'
}
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'dotnet publish --configuration Release --output PUBLISH'
}
}
}
}

View File

@ -12,7 +12,7 @@
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="5.0.0" /> <PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="5.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" /> <PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="5.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" /> <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="AdamRGrey.franz" Version="1.0.0" /> <PackageReference Include="greyn.franz" Version="1.0.0" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>