winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

InstallerType.cs (227B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 
      4 namespace WinGetSourceCreator.Model
      5 {
      6     public enum InstallerType
      7     {
      8         Msix,
      9         Exe,
     10         Msi,
     11         Zip,
     12     }
     13 }