-
Notifications
You must be signed in to change notification settings - Fork 884
Add PDF generation ability to Microsoft.DocAsCode.App #8939
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
64985df
add ability to run PDF generation via Docset API
dpvreony a7c00f0
refactor build to use exec helper
dpvreony a432fe1
rename pdf variable
dpvreony 7a86b85
Merge branch 'dotnet:main' into gen-pdf-via-docascodeapp-lib
dpvreony e684cce
Merge branch 'dotnet:main' into gen-pdf-via-docascodeapp-lib
dpvreony 236cb98
Merge branch 'dotnet:main' into gen-pdf-via-docascodeapp-lib
dpvreony e1f7ec8
Merge branch 'dotnet:main' into gen-pdf-via-docascodeapp-lib
dpvreony 59a4197
remove method groups
dpvreony 2938e01
prep for pdf unit tests
dpvreony aee3920
Update DocsetTest.cs
dpvreony 2683e9d
Update DocsetTest.cs
dpvreony cba3e14
log issues hidden by templates not resolving
dpvreony 4517977
housekeeping on tests
dpvreony ede880a
Merge remote-tracking branch 'upstream/main' into gen-pdf-via-docasco…
dpvreony fdbf4d8
remove snapshot test
dpvreony 036cd7c
restore missing docset fact
dpvreony d69e67f
update template bundle error message
dpvreony c48a932
split pdf docset tests
dpvreony d9aa393
limit pdf tests to windows
dpvreony f383fc6
Merge remote-tracking branch 'upstream/main' into gen-pdf-via-docasco…
dpvreony a5cb09b
Merge remote-tracking branch 'upstream/main' into gen-pdf-via-docasco…
dpvreony cb07551
tweak counts on a couple of tests with new log event
dpvreony a33973d
fix last few tests around log counts
dpvreony File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| // Copyright (c) .NET Foundation and contributors. All rights reserved. | ||
| // Licensed under the MIT license. See LICENSE file in the project root for full license information. | ||
|
|
||
| using System.Runtime.InteropServices; | ||
| using Xunit; | ||
|
|
||
| namespace docfx.Tests.Attributes | ||
| { | ||
| /// <summary> | ||
| /// XUnit Fact attribute that skips the test if the OS is not Windows. | ||
| /// </summary> | ||
| /// <remarks> | ||
| /// Taken from https://github.com/dotnet/sdk/blob/a30e465a2e2ea4e2550f319a2dc088daaafe5649/src/Tests/Microsoft.NET.TestFramework/Attributes/WindowsOnlyFactAttribute.cs | ||
| /// </remarks> | ||
| public class WindowsOnlyFactAttribute : FactAttribute | ||
| { | ||
| public WindowsOnlyFactAttribute() | ||
| { | ||
| if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) | ||
| { | ||
| this.Skip = "This test requires Windows to run"; | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.