Skip to content
Merged
Changes from all commits
Commits
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
19 changes: 0 additions & 19 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,32 +13,13 @@ pool:

variables:
Build.Configuration: Release
DotNet.Tools: $(Agent.ToolsDirectory)/dotnet
DotNet.Version: 7.0.x

jobs:
- job: BuildBits
displayName: Build and Test solution
timeoutInMinutes: 60
steps:

# Cache .NET SDKs and Tools across pipeline runs
- task: Cache@2
displayName: Cache .NET SDKs
inputs:
key: 'dotnet | "$(Agent.OS)" | "$(DotNet.Version)"'
restoreKeys: |
dotnet | "$(Agent.OS)"
dotnet
path: $(DotNet.Tools)

# Install the .NET 7 SDK
- task: UseDotNet@2
displayName: Install the .NET 7 SDK
inputs:
version: $(DotNet.Version)
performMultiLevelLookup: true

# Set Build Version
- script: nbgv cloud
displayName: Set NBGV version
Expand Down