.net 8
Some checks failed
gitea.arg.rip/vassago/pipeline/head There was a failure building this commit

This commit is contained in:
adam 2025-03-25 17:02:05 -04:00
parent b4b0fd155b
commit 33f55dc790
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -15,7 +15,7 @@ pipeline {
stage('Build') {
steps {
sh 'dotnet publish vassago.csproj --configuration Release --os linux'
archiveArtifacts artifacts: 'bin/Release/net9.0/linux-x64/publish/*'
archiveArtifacts artifacts: 'bin/Release/net8.0/linux-x64/publish/*'
}
}
stage ('upload') {

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>$(NoWarn);CA2254</NoWarn>
</PropertyGroup>