DevOps Classroomnotes 07/Feb/2023

Azure DevOps contd..

Manual Steps

git clone https://github.com/nopSolutions/nopCommerce.git

# dotnet-sdk 6.0
dotnet build <path to sln>
  • install dotnet sdk 7
sudo apt-get update && \
  sudo apt-get install -y dotnet-sdk-7.0
  • To build the project
git clone https://github.com/nopSolutions/nopCommerce.git
cd nopCommerce
dotnet restore src/NopCommerce.sln
dotnet build src/NopCommerce.sln
  • Pipeline created is
---
pool:
  name: "Azure Pipelines"
  vmImage: ubuntu-22.04

trigger:
  - master

steps:
  - task: DotNetCoreCLI@2
    inputs:
      command: build
      projects: src/NopCommerce.sln

Terms

  • Dependency: The libary or framework which your application is relying on for some functionality
  • Resolving Dependencies: Every Dependecy will have some version

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

About continuous learner

devops & cloud enthusiastic learner