mirror of
https://github.com/RPCS3/discord-bot.git
synced 2024-12-03 16:32:37 +00:00
21 lines
529 B
YAML
21 lines
529 B
YAML
# ASP.NET Core
|
|
# Build and test ASP.NET Core projects targeting .NET Core.
|
|
# Add steps that run tests, create a NuGet package, deploy, and more:
|
|
# https://docs.microsoft.com/azure/devops/pipelines/languages/dotnet-core
|
|
|
|
pool:
|
|
vmImage: 'Ubuntu 16.04'
|
|
|
|
variables:
|
|
buildConfiguration: 'Release'
|
|
|
|
steps:
|
|
- script: dotnet restore
|
|
displayName: 'dotnet restore'
|
|
|
|
- script: dotnet build --configuration Debug
|
|
displayName: 'dotnet build Debug'
|
|
|
|
- script: dotnet build --configuration Release
|
|
displayName: 'dotnet build Release'
|