diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2b7df6a..f7fc717 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -136,7 +136,6 @@ variables: stages: - build - deploy -# - installer - release # -------------------------------- @@ -177,11 +176,8 @@ EgwMultiEngineManager.Core:SDK:build: before_script: - *nuget-fix - '& "$env:NUGET_PATH" restore "$env:SOL_NAME.sln" -PackagesDirectory "c:\.nuget\packages"' -# - dotnet restore "$env:SOL_NAME.sln" --packages "c:\.nuget\packages" script: - echo $CI_COMMIT_BRANCH -# - dotnet build EgwMultiEngineManager.Data/EgwMultiEngineManager.Data.vbproj -# - dotnet build $env:APP_NAME/$env:APP_NAME.vbproj - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=Debug /p:OutputPath=bin/ /verbosity:minimal /m' # -------------------------------- @@ -224,17 +220,12 @@ EgwMultiEngineManager.Core:SDK:deploy: needs: ["EgwMultiEngineManager.Core:SDK:build"] before_script: - *nuget-fix -# - dotnet restore "$env:SOL_NAME.sln" --packages "c:\.nuget\packages" - '& "$env:NUGET_PATH" restore "$env:SOL_NAME.sln" -PackagesDirectory "c:\.nuget\packages"' - *nuspec-fix-framework script: -# - dotnet build $env:APP_NAME/$env:APP_NAME.vbproj - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=Debug /verbosity:minimal /m' -# - '& "$env:MSBUILD_PATH" "$env:APP_NAME\$env:APP_NAME.vbproj" -target:Build /p:Configuration=Debug /p:OutputPath=bin/ /verbosity:minimal /m' - #- dotnet pack -p:Configuration=Debug -p:verbosity=quiet $env:APP_NAME/$env:APP_NAME.vbproj - '& "$env:NUGET_PATH" pack "$env:APP_NAME.Debug.nuspec"' - '& "$env:NUGET_PATH" setapikey $NUGET_API_KEY -source http://nexus.steamware.net/repository/nuget-hosted' - - echo "Pack $env:APP_NAME.$env:NUM_REL.nupkg" - '& "$env:NUGET_PATH" push "$env:APP_NAME.$env:NUM_REL.nupkg" -Source http://nexus.steamware.net/repository/nuget-hosted' # --------------------------------