There was an error while loading. Please reload this page.
1 parent 5406f82 commit 9d749caCopy full SHA for 9d749ca
1 file changed
.azure-pipelines/ci-build.yml
@@ -21,6 +21,7 @@ pr:
21
variables:
22
buildPlatform: 'Any CPU'
23
buildConfiguration: 'Release'
24
+ testTargetFramework: 'net10.0'
25
ProductBinPath: '$(Build.SourcesDirectory)\src\Microsoft.OpenApi\bin\$(BuildConfiguration)'
26
REGISTRY: 'msgraphprodregistry.azurecr.io'
27
IMAGE_NAME: 'public/openapi/hidi'
@@ -102,7 +103,7 @@ extends:
102
103
# Run the Unit test
104
- pwsh: |
105
$testResultsDirectory = "$(Agent.TempDirectory)\TestResults"
- $targetFramework = "net10.0"
106
+ $targetFramework = "$(testTargetFramework)"
107
New-Item -ItemType Directory -Force -Path $testResultsDirectory | Out-Null
108
109
$testApplications = @(
0 commit comments