mirror of
https://github.com/tribufu/ServerManagers
synced 2026-06-01 09:42:39 +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:
|
parameters:
|
||||||
- name: ApplicationName
|
- name: ApplicationName
|
||||||
value: $(Build.DefinitionName)
|
type: string
|
||||||
- name: SolutionFile
|
default: $(Build.DefinitionName)
|
||||||
value: 'src/Server-Managers.sln'
|
- name: SolutionFile
|
||||||
- name: ProjectFile
|
type: string
|
||||||
value: 'src/$(ApplicationName)/$(ApplicationName).csproj'
|
default: 'src/Server-Managers.sln'
|
||||||
- name: BuildPlatform
|
- name: ProjectFile
|
||||||
value: AnyCPU
|
type: string
|
||||||
- name: BuildConfiguration
|
default: 'src/$(ApplicationName)/$(ApplicationName).csproj'
|
||||||
value: Release
|
- name: BuildPlatform
|
||||||
- name: PublishFolder
|
type: string
|
||||||
value: publish
|
default: AnyCPU
|
||||||
|
- name: BuildConfiguration
|
||||||
|
type: string
|
||||||
|
default: Release
|
||||||
|
- name: PublishFolder
|
||||||
|
type: string
|
||||||
|
default: publish
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- stage: build
|
- stage: build
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue