Azure DevOps contd..
Manual Steps
git clone https://github.com/nopSolutions/nopCommerce.git
# dotnet-sdk 6.0
dotnet build <path to sln>
sudo apt-get update && \
sudo apt-get install -y dotnet-sdk-7.0
git clone https://github.com/nopSolutions/nopCommerce.git
cd nopCommerce
dotnet restore src/NopCommerce.sln
dotnet build src/NopCommerce.sln
---
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
Like this:
Like Loading...