Change build instruction because this is a library

This commit is contained in:
zontreck 2024-12-16 21:07:26 -07:00
parent c46d93c802
commit 30c8121eb7

4
Jenkinsfile vendored
View file

@ -17,7 +17,9 @@ pipeline {
script {
sh '''
dotnet restore
dotnet publish LibAC.csproj --nologo -c Release --self-contained true /p:PublishSingleFile=true /p:PublishTrimmed=true
#dotnet publish LibAC.csproj --nologo -c Release --self-contained true /p:PublishSingleFile=true /p:PublishTrimmed=true
dotnet build -c Release
'''
}