File tree Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Expand file tree Collapse file tree 3 files changed +4
-10
lines changed Original file line number Diff line number Diff line change @@ -140,10 +140,6 @@ jobs:
140
140
run : |
141
141
git config --local user.email "[email protected] "
142
142
git config --local user.name "Selenium CI Bot"
143
- - name : Install specific version of DocFX tool
144
- # Pinning to 2.75.3 to avoid breaking changes in newer versions
145
- # See https://github.com/dotnet/docfx/issues/9855
146
- run : dotnet tool install --global --version 2.75.3 docfx
147
143
- name : Update Documentation
148
144
if : needs.determine-language.outputs.language == 'all' || needs.determine-language.outputs.language == 'dotnet'
149
145
run : ./go dotnet:docs
Original file line number Diff line number Diff line change @@ -777,10 +777,9 @@ namespace :dotnet do
777
777
task :docs , [ :skip_update ] do |_task , arguments |
778
778
FileUtils . rm_rf ( 'build/docs/api/dotnet/' )
779
779
begin
780
- # Pinning to 2.75.3 to avoid breaking changes in newer versions
781
- # See https://github.com/dotnet/docfx/issues/9855
780
+ # Pinning to 2.78.2 to avoid breaking changes in newer versions
782
781
sh 'dotnet tool uninstall --global docfx || true'
783
- sh 'dotnet tool install --global --version 2.75.3 docfx'
782
+ sh 'dotnet tool install --global --version 2.78.2 docfx'
784
783
# sh 'dotnet tool update -g docfx'
785
784
rescue StandardError
786
785
puts 'Please ensure that .NET SDK is installed.'
Original file line number Diff line number Diff line change 11
11
],
12
12
"dest" : " webdriver" ,
13
13
"namespaceLayout" : " nested" ,
14
- "outputFormat" : " apiPage"
14
+ // "outputFormat": "apiPage" // "apiPage" generation with errors
15
15
},
16
16
{
17
17
"src" : [
24
24
],
25
25
"dest" : " support" ,
26
26
"namespaceLayout" : " nested" ,
27
- "outputFormat" : " apiPage"
27
+ // "outputFormat": "apiPage" // "apiPage" generation with errors
28
28
}
29
-
30
29
],
31
30
"build" : {
32
31
"content" : [
You can’t perform that action at this time.
0 commit comments