You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
485 B
YAML
19 lines
485 B
YAML
stages:
|
|
- build
|
|
|
|
variables:
|
|
MSBUILD_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2022\Enterprise\MSBuild\Current\Bin\MSBuild.exe'
|
|
MSBUILD_TARGET: 'CleanFlashInstaller/CleanFlashInstaller.csproj'
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- '& nuget restore' # restore Nuget dependencies
|
|
- '& "$env:MSBUILD_PATH" "$env:MSBUILD_TARGET" /p:Configuration=Release'
|
|
artifacts:
|
|
paths:
|
|
- 'CleanFlashInstaller/bin/Release/*.exe'
|
|
expire_in: never
|
|
tags:
|
|
- windows
|