winget-cli

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

DirectiveConstants.cs (1040B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="DirectiveConstants.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.Processor.Constants
      8 {
      9     /// <summary>
     10     /// Directives.
     11     /// </summary>
     12     internal static class DirectiveConstants
     13     {
     14 #pragma warning disable SA1600 // ElementsMustBeDocumented
     15         public const string MaxVersion = "maxVersion";
     16         public const string MinVersion = "minVersion";
     17         public const string Module = "module";
     18         public const string ModuleGuid = "moduleGuid";
     19         public const string Repository = "repository";
     20         public const string Version = "version";
     21         public const string AllowPrerelease = "allowPrerelease";
     22 #pragma warning restore SA1600 // ElementsMustBeDocumented
     23     }
     24 }