.NEXT
dotnet.github.io › docfx
Quick Start | docfx - Microsoft .NET - GitHub Pages
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. concurrency: group: "pages" cancel-in-progress: false jobs: publish-docs: environment: name: github-pages url: ${{ steps.deployment.outputs.page_url }} runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3 - name: Dotnet Setup uses: actions/setup-dotnet@v3 with: dotnet-version: 8.x - run: dotnet tool update -g docfx - run: docfx <docfx-project-path>/docfx.json - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: # Upload entire repository path: '<docfx-project-path>/_site' - name: Deploy to GitHub Pages id: deployment uses: actions/deploy-pages@v4
Starred by 4.4K users
Forked by 886 users
Languages: C# 94.1% | JavaScript 3.2% | TypeScript 1.3% | CSS 0.5% | SCSS 0.4% | Go Template 0.3%
DocFx V3 How to use it?
I just downloaded the last V3 version, an I wonder how to use it ? Everything has changed since V2. Is there any documentation or tutorial about it ? Thanks. More on github.com
[Question] When is docfx v3 scheduled for release?
Hi, are there any news regarding a planned release date for docfx v3? Right now we are thinking about using v3 for our documentation, but if it is still far away we might simply go ahead and use v2. Especially important for us is generat... More on github.com
[Question] Is there a planned date for the release of docfx v3 ?
In order to try and get started with docfx is it better to go v2 or wait for the release of v3 ? ... Sign up for free to join this conversation on GitHub. Already have an account? More on github.com
Docfx V3 startup guide document
Add a startup guide to README How to run docfx restore How to run docfx build More on github.com
Voltstro
voltstro.dev › blog › 2022 › 06 › 19 › using-docfx-v3
Using DocFX V3 | Voltstro
June 19, 2022 - So clone the DocFX project, and switch to the v3-template branch: git clone https://github.com/dotnet/docfx cd docfx git checkout v3-template
GitHub
github.com › dotnet › docfx › discussions › 8355
the future of docfx v3 · dotnet/docfx · Discussion #8355
Hello since October there is a ... of docfx? Do you have more information? Beta Was this translation helpful? Give feedback. ... There was an error while loading. Please reload this page. Something went wrong. There was an error while loading. Please reload this page. ... V3 will be for Microsoft internal use only. See #8277 (comment) Beta Was this translation helpful? Give feedback. ... Sign up for free to join this conversation on GitHub...
Author: dotnet
GitHub
github.com › dotnet › docfx › issues › 3058
Docfx V3 startup guide document · Issue #3058 · dotnet/docfx
July 12, 2018 - Docfx V3 startup guide document#3058 · Copy link · Assignees · OsmondJiang · opened · on Jul 12, 2018 · Issue body actions · Add a startup guide to README · How to run docfx restore · How to run docfx build · Reactions are currently unavailable · Sign up for free to join this conversation on GitHub.
Author: dotnet
GitHub
github.com › dotnet › docfx › discussions › 8277
[Question] When is docfx v3 scheduled for release? · dotnet/docfx · Discussion #8277
As you can imagine, this also has the side effect of dramatically reducing Learn's dependency on DocFX to generate content. It's still present, but the build system only uses pieces of it, and the produced output is more of an intermediate format than the final HTML. Given these changes in the publishing model, it made sense to stop the official development of V3 - so you won't see any more work on that branch for the Learn site itself.
Author: dotnet
Author: dotnet
Taranissoftware
blog.taranissoftware.com › document-your-net-code-with-docfx-and-github-actions
Document your .NET code with DocFX and GitHub Actions
December 20, 2021 - Our workflows publish the documentation to a branch called gh-pages. Select the gh-pages branch in the first drop down, / (root) in the second drop down and click Save. Our documentation site is now available on the url shown, in this case: https://irongut.github.io/DocFXExample/ 🎉
GitHub
github.com › dotnet › docfx › discussions › 8174
V3 - versioning functionality · dotnet/docfx · Discussion #8174
The project maintainers are looking at pulling some of the more useful features of V3 back into the main branch but we're not going forward with V3 so I don't think it will ever be implemented/fixed in that branch. Beta Was this translation helpful? Give feedback. ... Sign up for free to join this conversation on GitHub.
Author: dotnet
Code Maze
code-maze.com › home › generating source code documentation with docfx
Generating Source Code Documentation With DocFx - Code Maze
April 28, 2024 - Let’s add a YML docfx.yml file to the .github/workflows folder: on: push jobs: generate-docs: runs-on: windows-latest steps: - uses: actions/checkout@v2 - name: Setup .NET 6.0 uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - name: Setup DocFX uses: crazy-max/ghaction-chocolatey@v1 with: args: install docfx - name: DocFX Build run: docfx .\docfx.json continue-on-error: false - name: Publish uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: _site force_orphan: true
.NEXT
dotnet.github.io › docfx › tutorial › docfx_getting_started.html
Github
October 20, 2021 - # However, do NOT cancel in-progress ... Checkout uses: actions/checkout@v3 - name: Dotnet Setup uses: actions/setup-dotnet@v3 with: dotnet-version: 8.x - run: dotnet tool update -g docfx - run: docfx <docfx-project-path>/docfx.json - name: Upload artifact uses: actions/uplo...