Igor Gritsenko 2022-01-06 15:17:35 +03:00
Родитель 39b73a1fa9 fee5e6eeb1
Коммит 036d39a7dd
1 изменённых файлов: 26 добавлений и 0 удалений

26
azure-pipelines.yml Normal file
Просмотреть файл

@ -0,0 +1,26 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- master
pool:
vmImage: windows-latest
steps:
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 6.0.100'
inputs:
version: 6.0.100
- script: |
dotnet pack -c Release src/Avalonia.Markup.Declarative/Avalonia.Markup.Declarative.csproj
displayName: 'Build and Package'
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: '$(Build.SourcesDirectory)/src/Avalonia.Markup.Declarative/bin/Release'
artifactName: 'Nuget'
condition: succeeded()