summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2019-01-10 18:31:18 +0100
committerJan Kotas <jkotas@microsoft.com>2019-01-10 09:31:18 -0800
commit4e032bc4cf862bca1668b12c6656b918467742b5 (patch)
tree30f947d6556e4a8c294842feff0c69eda9958014 /src/System.Private.CoreLib/shared/System
parente6504ac402a65283e2083ec8d28e8c90a743bd1a (diff)
downloadcoreclr-4e032bc4cf862bca1668b12c6656b918467742b5.tar.gz
coreclr-4e032bc4cf862bca1668b12c6656b918467742b5.tar.bz2
coreclr-4e032bc4cf862bca1668b12c6656b918467742b5.zip
Moves EnvironmentVariableTarget enum to shared partition (#21930)
Diffstat (limited to 'src/System.Private.CoreLib/shared/System')
-rw-r--r--src/System.Private.CoreLib/shared/System/EnvironmentVariableTarget.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/System.Private.CoreLib/shared/System/EnvironmentVariableTarget.cs b/src/System.Private.CoreLib/shared/System/EnvironmentVariableTarget.cs
new file mode 100644
index 0000000000..e68cbd8ecf
--- /dev/null
+++ b/src/System.Private.CoreLib/shared/System/EnvironmentVariableTarget.cs
@@ -0,0 +1,13 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+namespace System
+{
+ public enum EnvironmentVariableTarget
+ {
+ Process = 0,
+ User = 1,
+ Machine = 2,
+ }
+} \ No newline at end of file