ptorr-msft / WinGetYamlGenerator

Simple GUI editor for creating YAML files for WinGet.
MIT License
61 stars 19 forks source link

Support for the nullsoft, inno, wix, and additional installer types #22

Closed superusercode closed 4 years ago

superusercode commented 4 years ago

Per https://github.com/microsoft/winget-cli/blob/master/doc/ManifestSpecv0.1.md

ptorr-msft commented 4 years ago

Are those specific file-types, or are they just ways of creating EXE / MSI / MSIX?

superusercode commented 4 years ago

@ptorr-msft they're used in place of the exe installer type when you want to skip setting silent flags for popular installer solutions (see https://github.com/microsoft/winget-cli/blob/master/doc/ManifestSpecv0.1.md)

# InstallerType is a required field.  Supported types are inno, wix, msi, nullsoft, zip, appx, msix and exe.
# The winget command tool uses this value to assist in installing this application.
# If the value is an exe, you will need to provide the quiet switches.
# zip is not supported in this preview (5/24/2020)  
# Restrictions: [min: 1, max:40] 
InstallerType: msix
ptorr-msft commented 4 years ago

Done, thanks for suggestion.