Downloads:
7,459
Downloads of v 2024.2.24300:
13
Last Update:
29 Oct 2024
Package Maintainer(s):
Software Author(s):
- submain
Tags:
ghostdoc-pro ghostdoc admin notsilent trial documentation extensionGhostDoc Pro Edition
- 1
- 2
- 3
2024.2.24300 | Updated: 29 Oct 2024
Downloads:
7,459
Downloads of v 2024.2.24300:
13
Maintainer(s):
Software Author(s):
- submain
GhostDoc Pro Edition 2024.2.24300
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by submain. The inclusion of submain trademark(s), if any, upon this webpage is solely to identify submain goods or services and not for commercial purposes.
- 1
- 2
- 3
This Package Contains an Exempted Check
Not All Tests Have Passed
Validation Testing Passed
Verification Testing Exemption:
ghostdoc-pro can no longer be installed on a system without Visual Studio already installed
Scan Testing Exemption for this package version only:
Package Scanner thinks there should be more files to scan than there actually are, this is an issue with the service and not this package.
Deployment Method: Individual Install, Upgrade, & Uninstall
To install GhostDoc Pro Edition, run the following command from the command line or from PowerShell:
To upgrade GhostDoc Pro Edition, run the following command from the command line or from PowerShell:
To uninstall GhostDoc Pro Edition, run the following command from the command line or from PowerShell:
Deployment Method:
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
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
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
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download ghostdoc-pro --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade ghostdoc-pro -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 ghostdoc-pro -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 ghostdoc-pro
win_chocolatey:
name: ghostdoc-pro
version: '2024.2.24300'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'ghostdoc-pro' do
action :install
source 'INTERNAL REPO URL'
version '2024.2.24300'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller ghostdoc-pro
{
Name = "ghostdoc-pro"
Version = "2024.2.24300"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'ghostdoc-pro':
ensure => '2024.2.24300',
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.
This package was approved by moderator Windos on 12 Nov 2024.
GhostDoc is a Visual Studio extension that automatically generates XML documentation comments for methods and properties based on their type, parameters, name, and other contextual information.
When generating documentation for class derived from a base class or for interface implementation (e.g. .NET Framework or your custom framework), GhostDoc will use the documentation that Microsoft or the framework vendor has already written for the base class or interface.
Benefits
- Save keystrokes and time; simplify documenting your code
- Automatically generate a starting point for your help documentation
- Benefit of the base class documentation
- StyleCop compliant documentation templates
- (Pro) Documentation quality and maintenance
- (Pro) Code Spell Checker
- (Pro) Build Help File
- (Pro) Take control of your help files with Help Configurations and Template Libraries
- See this page for the full comparison between editions.
If you follow good naming conventions in your code, then you will get very decent results on the summary GhostDoc generates. When I see code that is not documented, it is as simple as hit Ctrl-Shift-D to have GhostDoc document it.
Notes
- Uninstall is not completely silent, after uninstall a browser window pops up
$ErrorActionPreference = 'Stop';
[array]$key = Get-UninstallRegistryKey -SoftwareName 'GhostDoc Pro'
$toolsDir = (Split-Path -Parent $MyInvocation.MyCommand.Definition)
if ($key.Count -eq 1) {
$key | ForEach-Object {
. "$toolsDir\helpers.ps1"
UninstallGhostDoc "$($_.PSChildName)"
}
} elseif ($key.Count -eq 0) {
Write-Warning "$env:chocolateyPackageName has already been uninstalled by other means."
} elseif ($key.Count -gt 1) {
Write-Warning "$($key.Count) matches found!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please alert the package maintainer that the following keys were matched:"
$key | ForEach-Object { Write-Warning "- $($_.DisplayName)" }
}
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
SetTitleMatchMode, RegEx
edition = %1%
winTitleWelcome = GhostDoc %edition% Setup
winTitleWelcomeText = Click Next to continue
winTitleLicense = GhostDoc %edition% Licence Agreement
winTitleIntegrationText = Visual Studio Intergation
winTitleReady = Ready to Install
winTitleCompleted = Completing the GhostDoc %edition% Setup Wizard
WinWait, %winTitleWelcome%, %winTitleWelcomeText%
ControlSend, Button1, {Enter}, %winTitleWelcome%, %winTitleWelcomeText%
Sleep, 100
WinWait, %winTitleLicense%
Control, Check,, Button2, %winTitleLicense%
ControlSend, Button5, {Enter}, %winTitleLicense%
Sleep, 100
WinWait, %winTitleWelcome%
ControlSend, Button1, {Enter}, %winTitleWelcome%
Sleep, 100
WinWait, %winTitleWelcome%, %winTitleIntegrationText%
ControlSend, Button1, {Enter}, %winTitleWelcome%
Sleep, 100
WinWait, %winTitleWelcome%, %winTitleReady%
ControlSend, Button1, {Enter}, %winTitleWelcome%
Sleep, 1000
WinWait, %winTitleWelcome%, %winTitleCompleted%
ControlSend, Button1, {Enter}, %winTitleWelcome%
function UninstallGhostDoc() {
param($msiGuid)
$packageArgs = @{
packageName = $env:ChocolateyPackageName
file = ''
fileType = 'msi'
silentArgs = "$msiGuid /qn /norestart"
validExitCodes= @(0)
}
Uninstall-ChocolateyPackage @packageArgs
}
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 |
---|---|---|---|---|
GhostDoc Pro Edition 2024.2.24300 | 13 | Tuesday, October 29, 2024 | Approved | |
GhostDoc Pro Edition 2024.1.24160 | 45 | Tuesday, June 11, 2024 | Approved | |
GhostDoc Pro Edition 2024.1.24150 | 49 | Thursday, May 30, 2024 | Approved | |
GhostDoc Pro Edition 2022.2.22190 | 311 | Sunday, July 17, 2022 | Approved | |
GhostDoc Pro Edition 2022.1.22135 | 83 | Monday, May 16, 2022 | Approved | |
GhostDoc Pro Edition 2022.1.22090 | 124 | Friday, April 1, 2022 | Approved | |
GhostDoc Pro Edition 2022.1.22055 | 148 | Thursday, February 24, 2022 | Approved | |
GhostDoc Pro Edition 2022.1.22020 | 121 | Monday, January 24, 2022 | Approved | |
GhostDoc Pro Edition 2022.1.21330 | 146 | Thursday, December 2, 2021 | Approved | |
GhostDoc Pro Edition 2021.2.21290 | 92 | Tuesday, October 19, 2021 | Approved | |
GhostDoc Pro Edition 2021.2.21150 | 151 | Wednesday, June 2, 2021 | Approved | |
GhostDoc Pro Edition 2021.2.21090 | 156 | Thursday, April 1, 2021 | Approved | |
GhostDoc Pro Edition 2021.1.20350 | 169 | Tuesday, December 15, 2020 | Approved | |
GhostDoc Pro Edition 2020.2.20300 | 157 | Wednesday, November 4, 2020 | Approved | |
GhostDoc Pro Edition 2020.2.20270 | 162 | Tuesday, September 29, 2020 | Approved | |
GhostDoc Pro Edition 2020.2.20230 | 190 | Friday, August 21, 2020 | Approved | |
GhostDoc Pro Edition 2020.2.20200 | 156 | Saturday, August 1, 2020 | Approved | |
GhostDoc Pro Edition 2020.1.20070 | 290 | Friday, March 13, 2020 | Approved | |
GhostDoc Pro Edition 2019.3.19260 | 294 | Tuesday, September 17, 2019 | Approved | |
GhostDoc Pro Edition 2019.2.19200 | 232 | Tuesday, July 23, 2019 | Approved | |
GhostDoc Pro Edition 2019.1.19150 | 255 | Tuesday, June 4, 2019 | Approved | |
GhostDoc Pro Edition 2019.1.19100 | 218 | Saturday, April 13, 2019 | Approved | |
GhostDoc Pro Edition 2018.2.19060 | 244 | Wednesday, March 6, 2019 | Approved | |
GhostDoc Pro Edition 2018.2.19030 | 203 | Thursday, February 7, 2019 | Approved | |
GhostDoc Pro Edition 2018.1.18330.20190125 | 228 | Friday, January 25, 2019 | Approved | |
GhostDoc Pro Edition 2018.1.18330 | 261 | Saturday, December 1, 2018 | Approved | |
GhostDoc Pro Edition 2018.1.18310 | 254 | Wednesday, November 7, 2018 | Approved | |
GhostDoc Pro Edition 2018.1.18300 | 254 | Wednesday, October 31, 2018 | Approved | |
GhostDoc Pro Edition 2018.1.18250 | 285 | Thursday, October 4, 2018 | Approved | |
GhostDoc Pro Edition 5.9.18240 | 271 | Sunday, September 2, 2018 | Approved | |
GhostDoc Pro Edition 5.9.18070 | 428 | Friday, April 6, 2018 | Approved | |
GhostDoc Pro Edition 5.8.17335 | 411 | Tuesday, January 2, 2018 | Approved | |
GhostDoc Pro Edition 5.8.17330 | 416 | Sunday, December 3, 2017 | Approved | |
GhostDoc Pro Edition 5.8 | 482 | Sunday, October 1, 2017 | Approved |
© 1998-2017 SubMain Software. All rights reserved.
[Software Changelog](
Package Changelog
-
- autohotkey.portable (≥ 1.1.28.1)
- chocolatey-core.extension (≥ 1.3.3)
Ground Rules:
- This discussion is only about GhostDoc Pro Edition and the GhostDoc Pro Edition 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 GhostDoc Pro Edition, 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.