Skip to content

Commit ebd4203

Browse files
authored
Merge pull request fluentmigrator#63 from jzabroski/master
Fix issue with API docs
2 parents 17121fa + 01bf802 commit ebd4203

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,9 @@
88
/**/obj/
99
_site
1010
fm-v*/
11+
######################
12+
# nuget local tools #
13+
######################
14+
# >= 6.3.1.1
15+
nuget.exe
16+
docfx.console/**

azure-pipelines.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ steps:
1919

2020
- task: NuGetToolInstaller@1
2121

22+
# We need to use 2.59.4 of docfx.console due to https://github.com/dotnet/docfx/issues/8097
23+
# which is fixed by https://github.com/dotnet/docfx/pull/8135
2224
- task: NuGetCommand@2
2325
displayName: 'Install docfx.console'
2426
inputs:
2527
command: 'custom'
26-
arguments: 'install docfx.console -Version 2.44.0 -ExcludeVersion'
28+
arguments: 'install docfx.console -Version 2.59.4 -ExcludeVersion'
2729

2830
- script: |
2931
$(docFxTool) metadata docfx.json

0 commit comments

Comments
 (0)