Skip to content
Merged
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
65c5571
Generate documentation file for all builds
robertlarkins Jul 20, 2018
b8147cb
Merge branch 'master' of https://github.com/System-IO-Abstractions/Sy…
robertlarkins Jul 28, 2018
cc16847
Install inheritdoc
robertlarkins Jul 29, 2018
8f08162
Add xml conversion step to appveyor deployment
robertlarkins Jul 29, 2018
3d80d15
Fix environment variable syntax
robertlarkins Jul 31, 2018
6c0ec79
Fix xml documentation build step
robertlarkins Jul 31, 2018
f005b77
Shift InheritDoc call to before_package
robertlarkins Jul 31, 2018
68b13b4
Remove InheritDoc nuget package
robertlarkins Aug 1, 2018
e894d82
Merge branch 'master' of https://github.com/robertlarkins/System.IO.A…
robertlarkins Aug 1, 2018
c66ad27
Add inheritdoc install to appveyor
robertlarkins Aug 3, 2018
effbfe7
Add missing colon to install stage
robertlarkins Aug 3, 2018
0d333f1
Add OutputDirectory to inheritdoc install
robertlarkins Aug 3, 2018
e06103f
Fix InheritDoc directory in before_package
robertlarkins Aug 4, 2018
57c4b68
Update InheritDoc version
robertlarkins Aug 5, 2018
ebcff7c
Merge branch 'master' into master
robertlarkins Aug 6, 2018
e6efa02
Merge branch 'master' into master
robertlarkins Aug 7, 2018
e85a1f2
Add environment variables for inheritdoc install
robertlarkins Aug 13, 2018
f3d189d
Fix environment variable syntax for nuget command
robertlarkins Aug 13, 2018
a72c103
Attempt to convert environment variables
robertlarkins Aug 13, 2018
5a68a0d
Change paths to use forward slashes
robertlarkins Aug 13, 2018
bcdb7ad
Attempt to parse environment variables
robertlarkins Aug 13, 2018
eb98416
Remove redundant quotation mark
robertlarkins Aug 13, 2018
1890484
Remove quotation marks
robertlarkins Aug 13, 2018
9a7e9d4
Adjust quotation marks
robertlarkins Aug 13, 2018
ca296e8
Wrap InheritDoc version in quotation marks
robertlarkins Aug 13, 2018
5f15889
Remove quotation marks from path
robertlarkins Aug 13, 2018
f0374d0
Revert to using backslashes
robertlarkins Aug 13, 2018
67b6725
Attempt to parse environment variables
robertlarkins Aug 13, 2018
8958cdc
Revert back to powershell variable type
robertlarkins Aug 13, 2018
cf910a6
Merge branch 'master' into master
robertlarkins Aug 13, 2018
c086cd4
Amend InheritDoc call
robertlarkins Aug 13, 2018
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
12 changes: 12 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,24 @@ dotnet_csproj:
version: '{version}'
package_version: '{version}'

environment:
INHERITDOC_VERSION: 1.2.2.1
TEMP_DIR: c:\temp

install:
# Temporarily install InheritDoc using the NuGet CLI
- nuget install inheritdoc -Version %INHERITDOC_VERSION% -OutputDirectory %TEMP_DIR%

before_build:
- nuget restore

build:
publish_nuget: true

before_package:
# This step replaces the inheritdoc tags in the xml documentation with documentation from mscorlib.xml
- ps: '& $env:TEMP_DIR\InheritDoc.$env:INHERITDOC_VERSION\tools\InheritDoc.exe -b $env:APPVEYOR_BUILD_FOLDER -g "c:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.X\mscorlib.xml" -o'

deploy:
- provider: NuGet
api_key:
Expand Down