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
Published
Categorized as Uncategorized Tagged

By continuous learner

devops & cloud enthusiastic learner

Leave a ReplyCancel reply

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

Please turn AdBlock off
Customized Social Media Icons from Acurax Digital Marketing Agency

Discover more from Direct DevOps from Quality Thought

Subscribe now to keep reading and get access to the full archive.

Continue reading

Exit mobile version
%%footer%%