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 25 Nov 2024.

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 44257 Wednesday, July 6, 2022 Approved
DocFX 2.59.2 23845 Monday, April 11, 2022 Approved
DocFX 2.59.1 2492 Thursday, March 31, 2022 Approved
DocFX 2.59.0 23694 Wednesday, January 19, 2022 Approved
DocFX 2.58.9 17078 Thursday, November 4, 2021 Approved
DocFX 2.58.8 517 Wednesday, November 3, 2021 Approved
DocFX 2.58.5 55711 Tuesday, October 26, 2021 Approved
DocFX 2.58.4 13099 Tuesday, September 14, 2021 Approved
DocFX 2.58.2 5576 Tuesday, August 24, 2021 Approved
DocFX 2.58 26195 Wednesday, June 16, 2021 Approved
DocFX 2.57.2 22264 Tuesday, April 20, 2021 Approved
DocFX 2.57.1 2093 Tuesday, April 13, 2021 Approved
DocFX 2.57 856 Friday, April 9, 2021 Approved
DocFX 2.56.7 15276 Tuesday, March 2, 2021 Approved
DocFX 2.56.6 36224 Thursday, December 10, 2020 Approved
DocFX 2.56.5 7114 Tuesday, November 10, 2020 Approved
DocFX 2.56.4 9065 Tuesday, October 20, 2020 Approved
DocFX 2.56.2 20155 Monday, July 27, 2020 Approved
DocFX 2.56.1 4146 Monday, July 6, 2020 Approved
DocFX 2.56 1158 Monday, June 29, 2020 Approved
DocFX 2.55 4421 Friday, June 12, 2020 Approved
DocFX 2.54 3584 Monday, May 25, 2020 Approved
DocFX 2.53.1 2586 Monday, May 11, 2020 Approved
DocFX 2.53 356 Monday, May 11, 2020 Approved
DocFX 2.52 6545 Saturday, April 11, 2020 Approved
DocFX 2.51 13675 Friday, March 20, 2020 Approved
DocFX 2.50 3495 Monday, March 2, 2020 Approved
DocFX 2.49 49837 Monday, February 17, 2020 Approved
DocFX 2.48.1 10219 Monday, January 6, 2020 Approved
DocFX 2.48 7948 Monday, December 9, 2019 Approved
DocFX 2.47 6512 Tuesday, October 29, 2019 Approved
DocFX 2.46 2397 Saturday, October 12, 2019 Approved
DocFX 2.45.1 6650 Thursday, September 12, 2019 Approved
DocFX 2.45 2770 Friday, August 23, 2019 Approved
DocFX 2.44 3001 Friday, August 2, 2019 Approved
DocFX 2.43.4 215 Friday, August 2, 2019 Approved
DocFX 2.43.3 2757 Monday, July 15, 2019 Approved
DocFX 2.43.2 2351 Monday, June 24, 2019 Approved
DocFX 2.43.1 750 Wednesday, June 19, 2019 Approved
DocFX 2.43 1300 Thursday, June 13, 2019 Approved
DocFX 2.42.4 4073 Friday, May 24, 2019 Approved
DocFX 2.42.3 1581 Monday, May 13, 2019 Approved
DocFX 2.42.2 370 Friday, May 10, 2019 Approved
DocFX 2.42.1 2194 Tuesday, April 23, 2019 Approved
DocFX 2.42 819 Friday, April 19, 2019 Approved
DocFX 2.41 2946 Friday, March 29, 2019 Approved
DocFX 2.40.12 1757 Monday, March 11, 2019 Approved
DocFX 2.40.11 1908 Friday, February 15, 2019 Approved
DocFX 2.40.10 1162 Friday, February 1, 2019 Approved
DocFX 2.40.9 315 Thursday, January 31, 2019 Approved
DocFX 2.40.8 515 Friday, January 25, 2019 Approved
DocFX 2.40.7 1124 Friday, January 4, 2019 Approved
DocFX 2.40.6 821 Wednesday, December 19, 2018 Approved
DocFX 2.40.5 469 Monday, December 17, 2018 Approved
DocFX 2.40.4 1216 Monday, November 26, 2018 Approved
DocFX 2.40.3 403 Friday, November 23, 2018 Approved
DocFX 2.40.1 2035 Monday, October 29, 2018 Approved
DocFX 2.40 1088 Friday, October 12, 2018 Approved
DocFX 2.39.2 1555 Sunday, September 9, 2018 Approved
DocFX 2.39.1 578 Monday, September 3, 2018 Approved
DocFX 2.39 376 Saturday, September 1, 2018 Approved
DocFX 2.38.1 1155 Thursday, August 16, 2018 Approved
DocFX 2.38 443 Monday, August 13, 2018 Approved
DocFX 2.37.2 1011 Tuesday, July 31, 2018 Approved
DocFX 2.37.1 686 Monday, July 23, 2018 Approved
DocFX 2.37 1454 Friday, June 29, 2018 Approved
DocFX 2.36.2 1098 Wednesday, June 13, 2018 Approved
DocFX 2.36.1 1628 Thursday, May 24, 2018 Approved
DocFX 2.36 642 Friday, May 18, 2018 Approved
DocFX 2.35.4 1106 Wednesday, May 2, 2018 Approved
DocFX 2.35.2 631 Thursday, April 26, 2018 Approved
DocFX 2.35.1 320 Thursday, April 26, 2018 Approved
DocFX 2.35 371 Wednesday, April 25, 2018 Approved
DocFX 2.34 1033 Wednesday, April 4, 2018 Approved
DocFX 2.33.2 347 Monday, April 2, 2018 Approved
DocFX 2.33.1 828 Wednesday, March 21, 2018 Approved
DocFX 2.33 523 Monday, March 19, 2018 Approved
DocFX 2.32.2 824 Friday, March 9, 2018 Approved
DocFX 2.32.1 536 Tuesday, March 6, 2018 Approved
DocFX 2.32 588 Wednesday, February 28, 2018 Approved
DocFX 2.31 1295 Friday, February 2, 2018 Approved
DocFX 2.29.1 1679 Monday, December 25, 2017 Approved
DocFX 2.29 453 Friday, December 22, 2017 Approved
DocFX 2.28.3 608 Tuesday, December 12, 2017 Approved
DocFX 2.28.2 515 Thursday, December 7, 2017 Approved
DocFX 2.28.1 591 Friday, December 1, 2017 Approved
DocFX 2.28 406 Thursday, November 30, 2017 Approved
DocFX 2.27 1224 Thursday, November 9, 2017 Approved
DocFX 2.26.4 961 Monday, October 30, 2017 Approved
DocFX 2.26.3 555 Thursday, October 26, 2017 Approved
DocFX 2.26.1 481 Tuesday, October 24, 2017 Approved
DocFX 2.26 455 Monday, October 23, 2017 Approved
DocFX 2.25.2 729 Tuesday, October 10, 2017 Approved
DocFX 2.25.1 416 Monday, October 9, 2017 Approved
DocFX 2.25 372 Monday, October 9, 2017 Approved
DocFX 2.24 943 Monday, September 11, 2017 Approved
DocFX 2.23.1 868 Tuesday, August 22, 2017 Approved
DocFX 2.23 520 Monday, August 21, 2017 Approved
DocFX 2.22.3 488 Thursday, August 17, 2017 Approved
DocFX 2.22.2 727 Friday, August 4, 2017 Approved
DocFX 2.22 502 Monday, July 31, 2017 Approved
DocFX 2.21.2 584 Monday, July 24, 2017 Approved
DocFX 2.21.1 515 Monday, July 17, 2017 Approved
DocFX 2.21 391 Monday, July 17, 2017 Approved
DocFX 2.20 546 Monday, July 10, 2017 Approved
DocFX 2.19.2 553 Tuesday, June 27, 2017 Approved
DocFX 2.19.1 534 Wednesday, June 21, 2017 Approved
DocFX 2.19 464 Monday, June 19, 2017 Approved
DocFX 2.18.5 416 Thursday, June 15, 2017 Approved
DocFX 2.18.4 573 Friday, June 9, 2017 Approved
DocFX 2.18.3 468 Thursday, June 8, 2017 Approved
DocFX 2.18.2 531 Thursday, June 1, 2017 Approved
DocFX 2.18.1 436 Wednesday, May 31, 2017 Approved
DocFX 2.17.7 475 Wednesday, May 24, 2017 Approved
DocFX 2.17.6 405 Tuesday, May 23, 2017 Approved
DocFX 2.17.5 405 Tuesday, May 23, 2017 Approved
DocFX 2.17.4 513 Friday, May 12, 2017 Approved
DocFX 2.17.3 424 Thursday, May 11, 2017 Approved
DocFX 2.17.2 467 Tuesday, May 9, 2017 Approved
DocFX 2.17.1 391 Monday, May 8, 2017 Approved
DocFX 2.17 514 Thursday, May 4, 2017 Approved
DocFX 2.16.8 402 Wednesday, May 3, 2017 Approved
DocFX 2.16.7 635 Wednesday, April 26, 2017 Approved
DocFX 2.16.2 498 Wednesday, April 19, 2017 Approved
DocFX 2.16.1 402 Wednesday, April 19, 2017 Approved
DocFX 2.16 504 Monday, April 17, 2017 Approved
DocFX 2.15.5 587 Wednesday, April 5, 2017 Approved
DocFX 2.15.4 482 Saturday, April 1, 2017 Approved
DocFX 2.15.3 467 Wednesday, March 29, 2017 Approved
DocFX 2.15.2 397 Wednesday, March 29, 2017 Approved
DocFX 2.15.1 435 Tuesday, March 28, 2017 Approved
DocFX 2.14.1 570 Monday, March 20, 2017 Approved
DocFX 2.14 445 Monday, March 20, 2017 Approved
DocFX 2.13.2 1577 Thursday, March 16, 2017 Approved
DocFX 2.13.1 557 Tuesday, March 7, 2017 Approved
DocFX 2.13 410 Monday, March 6, 2017 Approved
DocFX 2.12.1 4138 Tuesday, February 14, 2017 Approved
DocFX 2.12 487 Monday, February 13, 2017 Approved
DocFX 2.11.3 512 Tuesday, February 7, 2017 Approved
DocFX 2.11.2 597 Wednesday, January 25, 2017 Approved
DocFX 2.11.1 409 Tuesday, January 24, 2017 Approved
DocFX 2.10.2 719 Wednesday, January 4, 2017 Approved
DocFX 2.10.1 422 Tuesday, January 3, 2017 Approved
DocFX 2.10 445 Tuesday, January 3, 2017 Approved
DocFX 2.9.3 681 Thursday, December 15, 2016 Approved
DocFX 2.9.2 479 Wednesday, December 14, 2016 Approved
DocFX 2.9.1 431 Tuesday, December 13, 2016 Approved
DocFX 2.9 490 Monday, December 12, 2016 Approved
DocFX 2.8.2 601 Friday, November 25, 2016 Approved
DocFX 2.8.1 442 Thursday, November 24, 2016 Approved
DocFX 2.8 445 Tuesday, November 22, 2016 Approved
DocFX 2.7.3 584 Monday, November 7, 2016 Approved
DocFX 2.7.2 549 Wednesday, November 2, 2016 Approved
DocFX 2.7.1 480 Tuesday, November 1, 2016 Approved
DocFX 2.7 467 Monday, October 31, 2016 Approved
DocFX 2.6.3 631 Monday, October 24, 2016 Approved
DocFX 2.6.2 462 Friday, October 21, 2016 Approved
DocFX 2.6.1 509 Tuesday, October 11, 2016 Approved
DocFX 2.6 465 Monday, October 10, 2016 Approved
DocFX 2.5.4 656 Thursday, September 22, 2016 Approved
DocFX 2.5.3 452 Tuesday, September 20, 2016 Approved
DocFX 2.5.2 443 Monday, September 19, 2016 Approved
DocFX 2.5.1 367 Monday, September 19, 2016 Approved
DocFX 2.5 529 Wednesday, September 14, 2016 Approved
DocFX 2.4 533 Monday, August 29, 2016 Approved
DocFX 2.3.1 468 Friday, August 19, 2016 Approved
DocFX 2.3 549 Monday, August 8, 2016 Approved
DocFX 2.2.2 502 Tuesday, July 26, 2016 Approved
DocFX 2.2.1 404 Wednesday, July 20, 2016 Approved
DocFX 2.2 420 Monday, July 18, 2016 Approved
DocFX 2.1 459 Tuesday, June 28, 2016 Approved
DocFX 1.4 519 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