Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 6 additions & 1 deletion pipelines/azure_pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
displayName: Main Build
timeoutInMinutes: 120
pool:
vmImage: windows-2019
vmImage: windows-latest
steps:
- checkout: self
- task: NuGetToolInstaller@1
Expand All @@ -31,6 +31,11 @@ jobs:
inputs:
version: 5.x

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

6.x?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a new task to install 6.x. Later, I'd like to remove .net 5.

includePreviewVersions: true
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 6.x'
inputs:
version: 6.x
includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: Build Microsoft.AspNetCore.OData
inputs:
Expand Down
7 changes: 6 additions & 1 deletion pipelines/azure_pipelines_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ stages:
displayName: Main Build
timeoutInMinutes: 120
pool:
vmImage: windows-2019
vmImage: windows-latest
steps:
- checkout: self
- task: NuGetToolInstaller@1
Expand All @@ -40,6 +40,11 @@ stages:
inputs:
version: 5.x

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should version be 6.x here?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I added a new task to install 6.x. Later, I'd like to remove .net 5.

includePreviewVersions: true
- task: UseDotNet@2
displayName: 'Use .NET Core SDK 6.x'
inputs:
version: 6.x
includePreviewVersions: true
- task: DotNetCoreCLI@2
displayName: Build Microsoft.AspNetCore.OData
inputs:
Expand Down