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') { stage('Build') {
steps { steps {
sh 'dotnet publish vassago.csproj --configuration Release --os linux' 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') { stage ('upload') {

View File

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