Skip to content
Open
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
9ae0f24
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
4486332
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
25e3212
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
de0e8fe
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
e062abe
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
ca98326
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
8d564a3
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
61599e3
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 1, 2023
870c109
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
a099252
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
50687ff
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
d6049f6
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
1b04070
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
a8adb8d
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
992b32e
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
49f3f64
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
9ca313d
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
477779f
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
0fa225c
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
a4514db
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
f831c98
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
d042f72
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
02c0b77
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
5ec3af1
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
bcad5f2
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
4ae4885
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
54f2ea2
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
889ab3f
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 2, 2023
2ea5235
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
c8f2512
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
8291664
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
52b2336
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
462b326
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
dc33783
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
41ee8f3
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
d79b239
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
a1a6120
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
73bcf58
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
4c0eab6
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
6c63495
Update azure-pipelines-1.yml for Azure Pipelines
SubhasriSF4119 Mar 3, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 40 additions & 12 deletions azure-pipelines-1.yml
Original file line number Diff line number Diff line change
@@ -1,19 +1,47 @@
# 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
#Demo Project Application

trigger:
- Master

pool:
vmImage: ubuntu-latest
name: Default

variables:
buildConfiguration: 'Debug'
steps:
- script: echo Hello, world!
displayName: 'Run a one-line script'
- task: DotNetCoreInstaller@1
inputs:
packageType: 'sdk'
version: '7.0.102'

- task: DotNetCoreCLI@2
inputs:
command: 'test'
projects: '**/*Tests/*.csproj'
arguments: '--configuration $(buildConfiguration)'
- task: DotNetCoreCLI@2
displayName: dotnet restore
inputs:
command: 'restore'
feedsToUse: 'select'
feedRestore: 'projectName/feedName'
projects: '**/*.csproj'
includeNuGetOrg: true
- task: DotNetCoreCLI@2
displayName: Build
inputs:
command: build
projects: '**/*.csproj'
arguments: '--configuration $(buildConfiguration)'

- task: DotNetCoreCLI@2
displayName: Publish
inputs:
command: publish
publishWebProjects: false
projects: '**/*.csproj'
arguments: '--configuration $(buildConfiguration) --output $(build.artifactstagingdirectory)'

- script: |
echo Add other tasks to build, test, and deploy your project.
echo See https://aka.ms/yaml
displayName: 'Run a multi-line script'
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'