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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
steps:
- template: /.azure-pipelines/generation-templates/use-dotnet-sdk.yml@self
parameters:
version: "9.x" #kiota uses a net9 target
version: "10.x" #kiota uses a net10 target

- checkout: kiota
displayName: checkout kiota
Expand All @@ -12,7 +12,7 @@ steps:

- task: CopyFiles@2
inputs:
sourceFolder: '$(Build.SourcesDirectory)/src/kiota/bin/$(BuildConfiguration)/net9.0'
sourceFolder: '$(Build.SourcesDirectory)/src/kiota/bin/$(BuildConfiguration)/net10.0'
contents: '**/*'
targetFolder: '$(Build.ArtifactStagingDirectory)'
displayName: Copy Kiota executable
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ steps:
- template: /.azure-pipelines/generation-templates/set-user-config.yml@self
- template: /.azure-pipelines/generation-templates/use-dotnet-sdk.yml@self
parameters:
version: "9.x" #kiota uses a net9 target
version: "10.x" #kiota uses a net10 target

# checkout metadata repo if capture and clean step is skipped
- checkout: msgraph-metadata
Expand Down
Loading