winget-cli

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

ProcessExecutionEnvironmentVariableValueType.cs (867B)


      1 // -----------------------------------------------------------------------------
      2 // <copyright file="ProcessExecutionEnvironmentVariableValueType.cs" company="Microsoft Corporation">
      3 //     Copyright (c) Microsoft Corporation. Licensed under the MIT License.
      4 // </copyright>
      5 // -----------------------------------------------------------------------------
      6 
      7 namespace Microsoft.Management.Configuration.Processor.DSCv3.Helpers
      8 {
      9     /// <summary>
     10     /// The environment variable value type.
     11     /// </summary>
     12     internal enum ProcessExecutionEnvironmentVariableValueType
     13     {
     14         /// <summary>
     15         /// Prepend.
     16         /// </summary>
     17         Prepend,
     18 
     19         /// <summary>
     20         /// Append.
     21         /// </summary>
     22         Append,
     23 
     24         /// <summary>
     25         /// Override.
     26         /// </summary>
     27         Override,
     28     }
     29 }