Compare commits
3 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bfd2dc4fc6 | ||
|
|
5dc16a2880 | ||
|
|
b21b1f87b8 |
1 changed files with 22 additions and 0 deletions
22
azure-pipelines.yml
Normal file
22
azure-pipelines.yml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# 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
|
||||
|
||||
trigger:
|
||||
- main
|
||||
pool:
|
||||
vmImage: 'ubuntu-latest'
|
||||
|
||||
variables:
|
||||
buildConfiguration: 'Release'
|
||||
|
||||
steps:
|
||||
- script: dotnet build --configuration $(buildConfiguration)
|
||||
displayName: 'dotnet build $(buildConfiguration)'
|
||||
|
||||
- task: DotNetCoreCLI@2
|
||||
inputs:
|
||||
command: 'publish'
|
||||
publishWebProjects: false
|
||||
projects: '**/*.csproj'
|
||||
Loading…
Add table
Add a link
Reference in a new issue