Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

DocFX 2.59.4

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Microsoft. The inclusion of Microsoft trademark(s), if any, upon this webpage is solely to identify Microsoft goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

All Checks are Passing

3 Passing Tests


Validation Testing Passed


Verification Testing Passed

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

To install DocFX, run the following command from the command line or from PowerShell:

>

To upgrade DocFX, run the following command from the command line or from PowerShell:

>

To uninstall DocFX, run the following command from the command line or from PowerShell:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

1. Ensure you are set for organizational deployment

Please see the organizational deployment guide

2. Get the package into your environment

  • Open Source or Commercial:
    • Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
    • You can also just download the package and push it to a repository Download

3. Copy Your Script

choco upgrade docfx -y --source="'INTERNAL REPO URL'" [other options]

See options you can pass to upgrade.

See best practices for scripting.

Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.

If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:


choco upgrade docfx -y --source="'INTERNAL REPO URL'" 
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install docfx
  win_chocolatey:
    name: docfx
    version: '2.59.4'
    source: INTERNAL REPO URL
    state: present

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'docfx' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '2.59.4'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller docfx
{
    Name     = "docfx"
    Version  = "2.59.4"
    Source   = "INTERNAL REPO URL"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'docfx':
  ensure   => '2.59.4',
  provider => 'chocolatey',
  source   => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...

Package Approved

This package was approved as a trusted package on 07 Sep 2022.

Description

DocFx is a documentation generation tool for API reference and Markdown files!

DocFX is an API documentation generator for .NET, and currently it supports C# and VB.
It generates API reference documentation from triple-slash comments in your source code.
It also allows you to use Markdown files to create additional topics such as tutorials and how-tos, and to customize the generated reference documentation.
DocFX builds a static HTML website from your source code and Markdown files, which can be easily hosted on any web servers (for example, github.io).
Also, DocFX provides you the flexibility to customize the layout and style of your website through templates.
If you are interested in creating your own website with your own styles, you can follow how to create custom template to create custom templates.

Features

  • Website from Source Code and Markdown - DocFX generates Documentation directly from source code (.NET, RESTful API, JavaScript, Java, etc...) and Markdown files.
  • Run Everywhere - DocFX runs on Linux, macOS, and Windows. The generated website can be deployed to any web host with no additional configurations, e.g. Github Pages, Azure Websites...
  • Easy Customization - DocFX provides a flexible way to customize templates and themes easily.

tools\chocolateyinstall.ps1
$ErrorActionPreference = 'Stop';

$packageName= 'DocFX'
$version    = 'v2.59.4'
$toolsDir   = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url        = "https://github.com/dotnet/docfx/releases/download/$version/docfx.zip"
$hash       = '6de3058630cd89eeee8157d26a81d508a3ce5c0b64b0473c6360bf10a985a52b'

$packageArgs = @{
  packageName   = $packageName
  unzipLocation = $toolsDir
  url           = $url
  checksum      = $hash
  checksumType  = 'SHA256'
}

Install-ChocolateyZipPackage @packageArgs

tools\VERIFICATION
 

Log in or click on link to see number of positives.

In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).

Chocolatey Pro provides runtime protection from possible malware.

Add to Builder Version Downloads Last Updated Status
DocFX 2.59.3 48845 Wednesday, July 6, 2022 Approved
DocFX 2.59.2 23883 Monday, April 11, 2022 Approved
DocFX 2.59.1 2524 Thursday, March 31, 2022 Approved
DocFX 2.59.0 26985 Wednesday, January 19, 2022 Approved
DocFX 2.58.9 17208 Thursday, November 4, 2021 Approved
DocFX 2.58.8 672 Wednesday, November 3, 2021 Approved
DocFX 2.58.5 62951 Tuesday, October 26, 2021 Approved
DocFX 2.58.4 13137 Tuesday, September 14, 2021 Approved
DocFX 2.58.2 5614 Tuesday, August 24, 2021 Approved
DocFX 2.58 26509 Wednesday, June 16, 2021 Approved
DocFX 2.57.2 23679 Tuesday, April 20, 2021 Approved
DocFX 2.57.1 2146 Tuesday, April 13, 2021 Approved
DocFX 2.57 900 Friday, April 9, 2021 Approved
DocFX 2.56.7 15703 Tuesday, March 2, 2021 Approved
DocFX 2.56.6 40098 Thursday, December 10, 2020 Approved
DocFX 2.56.5 7157 Tuesday, November 10, 2020 Approved
DocFX 2.56.4 9745 Tuesday, October 20, 2020 Approved
DocFX 2.56.2 20192 Monday, July 27, 2020 Approved
DocFX 2.56.1 4190 Monday, July 6, 2020 Approved
DocFX 2.56 1233 Monday, June 29, 2020 Approved
DocFX 2.55 4482 Friday, June 12, 2020 Approved
DocFX 2.54 3618 Monday, May 25, 2020 Approved
DocFX 2.53.1 2622 Monday, May 11, 2020 Approved
DocFX 2.53 391 Monday, May 11, 2020 Approved
DocFX 2.52 6582 Saturday, April 11, 2020 Approved
DocFX 2.51 13708 Friday, March 20, 2020 Approved
DocFX 2.50 3523 Monday, March 2, 2020 Approved
DocFX 2.49 55802 Monday, February 17, 2020 Approved
DocFX 2.48.1 10271 Monday, January 6, 2020 Approved
DocFX 2.48 8331 Monday, December 9, 2019 Approved
DocFX 2.47 6544 Tuesday, October 29, 2019 Approved
DocFX 2.46 2433 Saturday, October 12, 2019 Approved
DocFX 2.45.1 6687 Thursday, September 12, 2019 Approved
DocFX 2.45 2808 Friday, August 23, 2019 Approved
DocFX 2.44 3043 Friday, August 2, 2019 Approved
DocFX 2.43.4 254 Friday, August 2, 2019 Approved
DocFX 2.43.3 2791 Monday, July 15, 2019 Approved
DocFX 2.43.2 2383 Monday, June 24, 2019 Approved
DocFX 2.43.1 789 Wednesday, June 19, 2019 Approved
DocFX 2.43 1340 Thursday, June 13, 2019 Approved
DocFX 2.42.4 4101 Friday, May 24, 2019 Approved
DocFX 2.42.3 1613 Monday, May 13, 2019 Approved
DocFX 2.42.2 411 Friday, May 10, 2019 Approved
DocFX 2.42.1 2236 Tuesday, April 23, 2019 Approved
DocFX 2.42 852 Friday, April 19, 2019 Approved
DocFX 2.41 2983 Friday, March 29, 2019 Approved
DocFX 2.40.12 1782 Monday, March 11, 2019 Approved
DocFX 2.40.11 1929 Friday, February 15, 2019 Approved
DocFX 2.40.10 1200 Friday, February 1, 2019 Approved
DocFX 2.40.9 352 Thursday, January 31, 2019 Approved
DocFX 2.40.8 560 Friday, January 25, 2019 Approved
DocFX 2.40.7 1163 Friday, January 4, 2019 Approved
DocFX 2.40.6 862 Wednesday, December 19, 2018 Approved
DocFX 2.40.5 503 Monday, December 17, 2018 Approved
DocFX 2.40.4 1250 Monday, November 26, 2018 Approved
DocFX 2.40.3 430 Friday, November 23, 2018 Approved
DocFX 2.40.1 2071 Monday, October 29, 2018 Approved
DocFX 2.40 1125 Friday, October 12, 2018 Approved
DocFX 2.39.2 1597 Sunday, September 9, 2018 Approved
DocFX 2.39.1 609 Monday, September 3, 2018 Approved
DocFX 2.39 411 Saturday, September 1, 2018 Approved
DocFX 2.38.1 1185 Thursday, August 16, 2018 Approved
DocFX 2.38 490 Monday, August 13, 2018 Approved
DocFX 2.37.2 1049 Tuesday, July 31, 2018 Approved
DocFX 2.37.1 725 Monday, July 23, 2018 Approved
DocFX 2.37 1490 Friday, June 29, 2018 Approved
DocFX 2.36.2 1130 Wednesday, June 13, 2018 Approved
DocFX 2.36.1 1657 Thursday, May 24, 2018 Approved
DocFX 2.36 680 Friday, May 18, 2018 Approved
DocFX 2.35.4 1142 Wednesday, May 2, 2018 Approved
DocFX 2.35.2 670 Thursday, April 26, 2018 Approved
DocFX 2.35.1 346 Thursday, April 26, 2018 Approved
DocFX 2.35 408 Wednesday, April 25, 2018 Approved
DocFX 2.34 1081 Wednesday, April 4, 2018 Approved
DocFX 2.33.2 386 Monday, April 2, 2018 Approved
DocFX 2.33.1 860 Wednesday, March 21, 2018 Approved
DocFX 2.33 560 Monday, March 19, 2018 Approved
DocFX 2.32.2 854 Friday, March 9, 2018 Approved
DocFX 2.32.1 572 Tuesday, March 6, 2018 Approved
DocFX 2.32 622 Wednesday, February 28, 2018 Approved
DocFX 2.31 1346 Friday, February 2, 2018 Approved
DocFX 2.29.1 1720 Monday, December 25, 2017 Approved
DocFX 2.29 505 Friday, December 22, 2017 Approved
DocFX 2.28.3 643 Tuesday, December 12, 2017 Approved
DocFX 2.28.2 557 Thursday, December 7, 2017 Approved
DocFX 2.28.1 622 Friday, December 1, 2017 Approved
DocFX 2.28 443 Thursday, November 30, 2017 Approved
DocFX 2.27 1284 Thursday, November 9, 2017 Approved
DocFX 2.26.4 1003 Monday, October 30, 2017 Approved
DocFX 2.26.3 596 Thursday, October 26, 2017 Approved
DocFX 2.26.1 514 Tuesday, October 24, 2017 Approved
DocFX 2.26 499 Monday, October 23, 2017 Approved
DocFX 2.25.2 761 Tuesday, October 10, 2017 Approved
DocFX 2.25.1 450 Monday, October 9, 2017 Approved
DocFX 2.25 410 Monday, October 9, 2017 Approved
DocFX 2.24 985 Monday, September 11, 2017 Approved
DocFX 2.23.1 907 Tuesday, August 22, 2017 Approved
DocFX 2.23 571 Monday, August 21, 2017 Approved
DocFX 2.22.3 527 Thursday, August 17, 2017 Approved
DocFX 2.22.2 767 Friday, August 4, 2017 Approved
DocFX 2.22 542 Monday, July 31, 2017 Approved
DocFX 2.21.2 629 Monday, July 24, 2017 Approved
DocFX 2.21.1 556 Monday, July 17, 2017 Approved
DocFX 2.21 428 Monday, July 17, 2017 Approved
DocFX 2.20 583 Monday, July 10, 2017 Approved
DocFX 2.19.2 589 Tuesday, June 27, 2017 Approved
DocFX 2.19.1 567 Wednesday, June 21, 2017 Approved
DocFX 2.19 492 Monday, June 19, 2017 Approved
DocFX 2.18.5 444 Thursday, June 15, 2017 Approved
DocFX 2.18.4 603 Friday, June 9, 2017 Approved
DocFX 2.18.3 507 Thursday, June 8, 2017 Approved
DocFX 2.18.2 569 Thursday, June 1, 2017 Approved
DocFX 2.18.1 467 Wednesday, May 31, 2017 Approved
DocFX 2.17.7 507 Wednesday, May 24, 2017 Approved
DocFX 2.17.6 440 Tuesday, May 23, 2017 Approved
DocFX 2.17.5 438 Tuesday, May 23, 2017 Approved
DocFX 2.17.4 554 Friday, May 12, 2017 Approved
DocFX 2.17.3 462 Thursday, May 11, 2017 Approved
DocFX 2.17.2 496 Tuesday, May 9, 2017 Approved
DocFX 2.17.1 427 Monday, May 8, 2017 Approved
DocFX 2.17 559 Thursday, May 4, 2017 Approved
DocFX 2.16.8 431 Wednesday, May 3, 2017 Approved
DocFX 2.16.7 664 Wednesday, April 26, 2017 Approved
DocFX 2.16.2 533 Wednesday, April 19, 2017 Approved
DocFX 2.16.1 425 Wednesday, April 19, 2017 Approved
DocFX 2.16 535 Monday, April 17, 2017 Approved
DocFX 2.15.5 625 Wednesday, April 5, 2017 Approved
DocFX 2.15.4 509 Saturday, April 1, 2017 Approved
DocFX 2.15.3 500 Wednesday, March 29, 2017 Approved
DocFX 2.15.2 424 Wednesday, March 29, 2017 Approved
DocFX 2.15.1 472 Tuesday, March 28, 2017 Approved
DocFX 2.14.1 619 Monday, March 20, 2017 Approved
DocFX 2.14 482 Monday, March 20, 2017 Approved
DocFX 2.13.2 1611 Thursday, March 16, 2017 Approved
DocFX 2.13.1 595 Tuesday, March 7, 2017 Approved
DocFX 2.13 445 Monday, March 6, 2017 Approved
DocFX 2.12.1 4167 Tuesday, February 14, 2017 Approved
DocFX 2.12 517 Monday, February 13, 2017 Approved
DocFX 2.11.3 550 Tuesday, February 7, 2017 Approved
DocFX 2.11.2 640 Wednesday, January 25, 2017 Approved
DocFX 2.11.1 443 Tuesday, January 24, 2017 Approved
DocFX 2.10.2 773 Wednesday, January 4, 2017 Approved
DocFX 2.10.1 462 Tuesday, January 3, 2017 Approved
DocFX 2.10 504 Tuesday, January 3, 2017 Approved
DocFX 2.9.3 719 Thursday, December 15, 2016 Approved
DocFX 2.9.2 513 Wednesday, December 14, 2016 Approved
DocFX 2.9.1 467 Tuesday, December 13, 2016 Approved
DocFX 2.9 523 Monday, December 12, 2016 Approved
DocFX 2.8.2 632 Friday, November 25, 2016 Approved
DocFX 2.8.1 482 Thursday, November 24, 2016 Approved
DocFX 2.8 482 Tuesday, November 22, 2016 Approved
DocFX 2.7.3 622 Monday, November 7, 2016 Approved
DocFX 2.7.2 601 Wednesday, November 2, 2016 Approved
DocFX 2.7.1 524 Tuesday, November 1, 2016 Approved
DocFX 2.7 498 Monday, October 31, 2016 Approved
DocFX 2.6.3 665 Monday, October 24, 2016 Approved
DocFX 2.6.2 499 Friday, October 21, 2016 Approved
DocFX 2.6.1 551 Tuesday, October 11, 2016 Approved
DocFX 2.6 496 Monday, October 10, 2016 Approved
DocFX 2.5.4 696 Thursday, September 22, 2016 Approved
DocFX 2.5.3 490 Tuesday, September 20, 2016 Approved
DocFX 2.5.2 473 Monday, September 19, 2016 Approved
DocFX 2.5.1 398 Monday, September 19, 2016 Approved
DocFX 2.5 573 Wednesday, September 14, 2016 Approved
DocFX 2.4 561 Monday, August 29, 2016 Approved
DocFX 2.3.1 504 Friday, August 19, 2016 Approved
DocFX 2.3 597 Monday, August 8, 2016 Approved
DocFX 2.2.2 537 Tuesday, July 26, 2016 Approved
DocFX 2.2.1 445 Wednesday, July 20, 2016 Approved
DocFX 2.2 460 Monday, July 18, 2016 Approved
DocFX 2.1 490 Tuesday, June 28, 2016 Approved
DocFX 1.4 554 Thursday, February 18, 2016 Approved

This package has no dependencies.

Discussion for the DocFX Package

Ground Rules:

  • This discussion is only about DocFX and the DocFX package. If you have feedback for Chocolatey, please contact the Google Group.
  • This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
  • The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
  • Tell us what you love about the package or DocFX, or tell us what needs improvement.
  • Share your experiences with the package, or extra configuration or gotchas that you've found.
  • If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.
comments powered by Disqus