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

Merge remote-tracking branch 'origin/master'

This commit is contained in:
SpoinkyNL 2020-11-16 00:21:29 +01:00
commit e5e334c54d

View File

@ -17,7 +17,11 @@ steps:
- checkout: self - checkout: self
path: s/Artemis path: s/Artemis
- task: NuGetToolInstaller@1 - task: UseDotNet@2
displayName: 'Install .Net 5 SDK'
inputs:
packageType: 'sdk'
version: '5.0.100'
- task: DownloadPipelineArtifact@2 - task: DownloadPipelineArtifact@2
inputs: inputs:
@ -28,16 +32,12 @@ steps:
artifactName: 'RGB.NET development build' artifactName: 'RGB.NET development build'
targetPath: '$(Pipeline.Workspace)/s/RGB.NET/bin/netstandard2.0' targetPath: '$(Pipeline.Workspace)/s/RGB.NET/bin/netstandard2.0'
- task: NuGetCommand@2 - task: DotNetCoreCLI@2
displayName: 'NuGet restore Artemis'
inputs: inputs:
restoreSolution: '$(artemisSolution)' command: 'restore'
projects: '$(artemisSolution)'
# - task: ResharperCli@2 feedsToUse: 'config'
# inputs: nugetConfigPath: '$(Pipeline.Workspace)/s/Artemis/src/NuGet.Config'
# solutionOrProjectPath: 'src/Artemis.sln'
# failBuildLevelSelector: 'Error'
# additionalArguments: '/disable-settings-layers:SolutionPersonal --properties:Configuration=win-x64'
- task: DotNetCoreCLI@2 - task: DotNetCoreCLI@2
displayName: 'Publish Artemis' displayName: 'Publish Artemis'