From d1b90572db522885b214ea4192e040fc0ee404f8 Mon Sep 17 00:00:00 2001 From: Robert Beekman Date: Wed, 17 Mar 2021 20:53:31 +0100 Subject: [PATCH] Fixed API doc generation [skip ci] --- ci/azure-pipelines-docfx.yml | 30 ++++++++++++++++++++++-------- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/ci/azure-pipelines-docfx.yml b/ci/azure-pipelines-docfx.yml index 36bfd34f4..db588fe8c 100644 --- a/ci/azure-pipelines-docfx.yml +++ b/ci/azure-pipelines-docfx.yml @@ -7,24 +7,38 @@ trigger: - master pr: none +resources: + repositories: + - repository: RGBNET + type: github + endpoint: github.com_SpoinkyNL + name: DarthAffe/RGB.NET + ref: Development + pool: vmImage: 'windows-latest' variables: artemisSolution: '**/Artemis.sln' - + rgbSolution: '**/RGB.NET.sln' + pluginProjects: '**/Artemis.Plugins.*.csproj' + BuildId: $(Build.BuildId) + BuildNumber: $(Build.BuildNumber) + SourceBranch: $(Build.SourceBranch) + SourceVersion: $(Build.SourceVersion) + steps: +- checkout: RGBNET + path: s/RGB.NET - checkout: self path: s/Artemis -- task: DownloadPipelineArtifact@2 +- task: DotNetCoreCLI@2 + displayName: 'RGB.NET - Build' inputs: - buildType: 'specific' - project: '882fdc71-c09c-4923-8ab0-2cd9fcf0656d' - definition: '3' - buildVersionToDownload: 'latest' - artifactName: 'RGB.NET development build' - targetPath: '$(Pipeline.Workspace)/s/RGB.NET/bin/netstandard2.0' + command: 'build' + projects: '$(rgbSolution)' + arguments: '--configuration Release' - task: DotNetCoreCLI@2 displayName: 'dotnet restore Artemis'