mirror of
https://github.com/tribufu/ServerManagers
synced 2026-06-01 09:42:39 +00:00
pipeline file changes
This commit is contained in:
parent
efb8585f8d
commit
88c1ecc854
2 changed files with 12 additions and 3 deletions
|
|
@ -1,13 +1,10 @@
|
||||||
parameters:
|
parameters:
|
||||||
- name: ApplicationName
|
- name: ApplicationName
|
||||||
type: string
|
type: string
|
||||||
default: $(Build.DefinitionName)
|
|
||||||
- name: SolutionFile
|
- name: SolutionFile
|
||||||
type: string
|
type: string
|
||||||
default: 'src/Server-Managers.sln'
|
|
||||||
- name: ProjectFile
|
- name: ProjectFile
|
||||||
type: string
|
type: string
|
||||||
default: 'src/${{parameters.ApplicationName}}/${{parameters.ApplicationName}}.csproj'
|
|
||||||
- name: BuildPlatform
|
- name: BuildPlatform
|
||||||
type: string
|
type: string
|
||||||
default: AnyCPU
|
default: AnyCPU
|
||||||
|
|
|
||||||
|
|
@ -12,8 +12,20 @@ pool:
|
||||||
# vmImage: windows-latest
|
# vmImage: windows-latest
|
||||||
demands: InnoSetup
|
demands: InnoSetup
|
||||||
|
|
||||||
|
variables:
|
||||||
|
- name: ApplicationName
|
||||||
|
value: $(Build.DefinitionName)
|
||||||
|
- name: SolutionFile
|
||||||
|
value: 'src/Server-Managers.sln'
|
||||||
|
- name: ProjectFile
|
||||||
|
value: 'src/$(ApplicationName)/$(ApplicationName).csproj'
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- template: azure-pipelines-build.yml@self
|
- template: azure-pipelines-build.yml@self
|
||||||
|
parameters:
|
||||||
|
ApplicationName: $(ApplicationName)
|
||||||
|
SolutionFile: $(SolutionFile)
|
||||||
|
ProjectFile: $(ProjectFile)
|
||||||
|
|
||||||
- stage: deployBeta
|
- stage: deployBeta
|
||||||
displayName: Beta
|
displayName: Beta
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue