File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -71,12 +71,16 @@ extends:
71
71
- task : UseDotNet@2
72
72
displayName : ' Use .NET 6'
73
73
inputs :
74
- version : 6.x
74
+ version : 6.0.x
75
+ packageType : sdk
76
+ installationPath : $(Agent.ToolsDirectory)/dotnet
75
77
76
78
- task : UseDotNet@2
77
79
displayName : ' Use .NET 8'
78
80
inputs :
79
- version : 8.x
81
+ version : 8.0.x
82
+ packageType : sdk
83
+ installationPath : $(Agent.ToolsDirectory)/dotnet
80
84
81
85
# Install the nuget tool.
82
86
- task : NuGetToolInstaller@1
@@ -89,15 +93,15 @@ extends:
89
93
- task : DotNetCoreCLI@2
90
94
displayName : ' build'
91
95
inputs :
92
- projects : ' $(Build.SourcesDirectory)\ Microsoft.OpenApi.sln'
96
+ projects : ' $(Build.SourcesDirectory)/ Microsoft.OpenApi.sln'
93
97
arguments : ' --configuration $(BuildConfiguration) --no-incremental'
94
98
95
99
# Run the Unit test
96
100
- task : DotNetCoreCLI@2
97
101
displayName : ' test'
98
102
inputs :
99
103
command : test
100
- projects : ' $(Build.SourcesDirectory)\ Microsoft.OpenApi.sln'
104
+ projects : ' $(Build.SourcesDirectory)/ Microsoft.OpenApi.sln'
101
105
arguments : ' --configuration $(BuildConfiguration) --no-build'
102
106
103
107
- task : EsrpCodeSigning@5
@@ -109,7 +113,7 @@ extends:
109
113
AuthAKVName : ' akv-prod-eastus'
110
114
AuthCertName : ' ReferenceLibraryPrivateCert'
111
115
AuthSignCertName : ' ReferencePackagePublisherCertificate'
112
- FolderPath : ' $(Build.SourcesDirectory)\ src'
116
+ FolderPath : ' $(Build.SourcesDirectory)/ src'
113
117
signConfigType : ' inlineSignParams'
114
118
inlineOperation : |
115
119
[
You can’t perform that action at this time.
0 commit comments