mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
changed variables to paramaters
This commit is contained in:
parent
ef6b1c0241
commit
6644f37d64
1 changed files with 19 additions and 13 deletions
|
|
@ -1,16 +1,22 @@
|
|||
variables:
|
||||
- name: ApplicationName
|
||||
value: $(Build.DefinitionName)
|
||||
- name: SolutionFile
|
||||
value: 'src/Server-Managers.sln'
|
||||
- name: ProjectFile
|
||||
value: 'src/$(ApplicationName)/$(ApplicationName).csproj'
|
||||
- name: BuildPlatform
|
||||
value: AnyCPU
|
||||
- name: BuildConfiguration
|
||||
value: Release
|
||||
- name: PublishFolder
|
||||
value: publish
|
||||
parameters:
|
||||
- name: ApplicationName
|
||||
type: string
|
||||
default: $(Build.DefinitionName)
|
||||
- name: SolutionFile
|
||||
type: string
|
||||
default: 'src/Server-Managers.sln'
|
||||
- name: ProjectFile
|
||||
type: string
|
||||
default: 'src/$(ApplicationName)/$(ApplicationName).csproj'
|
||||
- name: BuildPlatform
|
||||
type: string
|
||||
default: AnyCPU
|
||||
- name: BuildConfiguration
|
||||
type: string
|
||||
default: Release
|
||||
- name: PublishFolder
|
||||
type: string
|
||||
default: publish
|
||||
|
||||
stages:
|
||||
- stage: build
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue