mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 14:15:47 +03:00
14 lines
545 B
Plaintext
14 lines
545 B
Plaintext
|
node {
|
||
|
stage 'Checkout'
|
||
|
checkout scm
|
||
|
|
||
|
stage 'Build'
|
||
|
bat 'nuget restore Facepunch.Steamworks.sln'
|
||
|
bat "\"${tool 'MSBuild'}\" Facepunch.Steamworks/Facepunch.Steamworks.csproj /p:Configuration=Release /p:ProductVersion=1.0.0.${env.BUILD_NUMBER}"
|
||
|
bat "\"${tool 'MSBuild'}\" Facepunch.Steamworks/Facepunch.Steamworks.csproj /p:Configuration=Debug /p:ProductVersion=1.0.0.${env.BUILD_NUMBER}"
|
||
|
|
||
|
stage 'Archive'
|
||
|
archiveArtifacts Release: 'Facepunch.Steamworks/bin/Release/**'
|
||
|
archiveArtifacts Debug: 'Facepunch.Steamworks/bin/Debug/**'
|
||
|
|
||
|
}
|