Skip to content

Commit

Permalink
Added .NET 7.0 support for release pipelines (#6288)
Browse files Browse the repository at this point in the history
* Added .NET 7.0 support for nightly build pipelines

* added .NET 7 to release pipeline also
  • Loading branch information
Aaronontheweb committed Dec 5, 2022
1 parent 5605d83 commit ae953d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build-system/nightly-builds.yaml
Expand Up @@ -19,6 +19,10 @@ variables:
- group: nugetKeys #create this group with SECRET variables `nugetKey`

steps:
- task: UseDotNet@2
displayName: 'Use .NET 7 SDK 7.0.100'
inputs:
version: 7.0.100
- task: UseDotNet@2
displayName: 'Use .NET 5 SDK 6.0.100'
inputs:
Expand All @@ -32,4 +36,4 @@ steps:
displayName: 'FAKE Build'
inputs:
filename: build.cmd
arguments: 'Nuget nugetprerelease=dev nugetpublishurl=$(nightlyUrl) nugetkey=$(nightlyKey)'
arguments: 'Nuget nugetprerelease=dev nugetpublishurl=$(nightlyUrl) nugetkey=$(nightlyKey)'
4 changes: 4 additions & 0 deletions build-system/windows-release.yaml
Expand Up @@ -22,6 +22,10 @@ variables:
- name: githubRepositoryName
value: akkadotnet/akka.net
steps:
- task: UseDotNet@2
displayName: 'Use .NET 7 SDK 7.0.100'
inputs:
version: 7.0.100
- task: UseDotNet@2
displayName: 'Use .NET 6 SDK 6.0.100'
inputs:
Expand Down

0 comments on commit ae953d0

Please sign in to comment.