fix admin (csproj al posto di sln) + parametri compilazione...

This commit is contained in:
Samuele E. Locatelli
2017-04-04 16:39:24 +02:00
parent 12bf325c1b
commit a1b9246fa0
Vendored
+2 -2
View File
@@ -19,11 +19,11 @@ pipeline {
parallel (
HOME: {
echo 'Build HOME Release'
bat "\"${tool 'MSBuild-14.0'}\" HOME\\HOME.csproj /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}"
bat "\"${tool 'MSBuild-14.0'}\" HOME\\HOME.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}"
},
ADMIN: {
echo 'Build ADMIN Release'
bat "\"${tool 'MSBuild-14.0'}\" GPW_Admin\\GPW_Admin.sln /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}"
bat "\"${tool 'MSBuild-14.0'}\" GPW_Admin\\GPW_Admin.csproj -target:Build /p:Configuration=Release /p:Platform=\"Any CPU\" /p:ProductVersion=${env.versionNumber}"
},
failFast: false)
}