1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Fixed API doc generation

[skip ci]
This commit is contained in:
Robert Beekman 2021-03-17 20:53:31 +01:00
parent 08d91c6a46
commit d1b90572db

View File

@ -7,24 +7,38 @@ trigger:
- master - master
pr: none pr: none
resources:
repositories:
- repository: RGBNET
type: github
endpoint: github.com_SpoinkyNL
name: DarthAffe/RGB.NET
ref: Development
pool: pool:
vmImage: 'windows-latest' vmImage: 'windows-latest'
variables: variables:
artemisSolution: '**/Artemis.sln' artemisSolution: '**/Artemis.sln'
rgbSolution: '**/RGB.NET.sln'
pluginProjects: '**/Artemis.Plugins.*.csproj'
BuildId: $(Build.BuildId)
BuildNumber: $(Build.BuildNumber)
SourceBranch: $(Build.SourceBranch)
SourceVersion: $(Build.SourceVersion)
steps: steps:
- checkout: RGBNET
path: s/RGB.NET
- checkout: self - checkout: self
path: s/Artemis path: s/Artemis
- task: DownloadPipelineArtifact@2 - task: DotNetCoreCLI@2
displayName: 'RGB.NET - Build'
inputs: inputs:
buildType: 'specific' command: 'build'
project: '882fdc71-c09c-4923-8ab0-2cd9fcf0656d' projects: '$(rgbSolution)'
definition: '3' arguments: '--configuration Release'
buildVersionToDownload: 'latest'
artifactName: 'RGB.NET development build'
targetPath: '$(Pipeline.Workspace)/s/RGB.NET/bin/netstandard2.0'
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'dotnet restore Artemis' displayName: 'dotnet restore Artemis'