Skip to content
This repository has been archived by the owner on Oct 28, 2023. It is now read-only.

gamgee/chocolatey-packages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

chocolatey packages

This project is archived because i switched to winget

Development tips

Generate empty package template

choco new packageName

Build and install package from .nuspec file

choco install -fdv C:\PATH\to\.nuspec

Build the package

# run in package directory
choco pack

Test the package

# run in package directory
choco install packageName -dv -s .

Push package to cocolatey community feed

choco apikey --key your-api-key --source https://push.chocolatey.org/
choco push MyPackage.1.0.nupkg --source https://push.chocolatey.org/

Resources