dependency versions updated

This commit is contained in:
Adam R Grey 2023-03-08 17:30:10 -05:00
parent 442be60a49
commit f19684964a
2 changed files with 4 additions and 4 deletions

6
Jenkinsfile vendored
View File

@ -1,7 +1,7 @@
pipeline {
agent any
tools {
dotnetsdk 'dotnet6'
dotnetsdk 'dotnet7'
}
stages {
stage('clean old'){
@ -12,13 +12,13 @@ pipeline {
stage('linux') {
steps {
sh 'dotnet publish --configuration Release --os linux'
archiveArtifacts artifacts: 'bin/Release/net6.0/linux-x64/publish/*.*'
archiveArtifacts artifacts: 'bin/Release/net7.0/linux-x64/publish/*.*'
}
}
stage('windows') {
steps {
sh 'dotnet publish --configuration Release --os windows'
archiveArtifacts artifacts: 'bin/Release/net6.0/windows-x64/publish/*.*'
archiveArtifacts artifacts: 'bin/Release/net7.0/windows-x64/publish/*.*'
}
}
}

View File

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