summaryrefslogtreecommitdiff
path: root/src/mscorlib/src/System/IAppDomainSetup.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/mscorlib/src/System/IAppDomainSetup.cs')
-rw-r--r--src/mscorlib/src/System/IAppDomainSetup.cs84
1 files changed, 0 insertions, 84 deletions
diff --git a/src/mscorlib/src/System/IAppDomainSetup.cs b/src/mscorlib/src/System/IAppDomainSetup.cs
deleted file mode 100644
index a088c629d8..0000000000
--- a/src/mscorlib/src/System/IAppDomainSetup.cs
+++ /dev/null
@@ -1,84 +0,0 @@
-// 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.
-
-/*============================================================
-**
-** Interface: IAppDomainSetup
-**
-**
-**
-**
-** Purpose: Properties exposed to COM
-**
-**
-===========================================================*/
-namespace System {
-
- using System.Runtime.InteropServices;
-
- [GuidAttribute("27FFF232-A7A8-40dd-8D4A-734AD59FCD41")]
- [InterfaceTypeAttribute(ComInterfaceType.InterfaceIsIUnknown)]
-[System.Runtime.InteropServices.ComVisible(true)]
- public interface IAppDomainSetup
- {
- String ApplicationBase {
- get;
- set;
- }
-
- String ApplicationName
- {
- get;
- set;
- }
-
- String CachePath
- {
- get;
- set;
- }
-
- String ConfigurationFile {
- get;
- set;
- }
-
- String DynamicBase
- {
- get;
- set;
- }
-
- String LicenseFile
- {
- get;
- set;
- }
-
- String PrivateBinPath
- {
- get;
- set;
- }
-
- String PrivateBinPathProbe
- {
- get;
- set;
- }
-
- String ShadowCopyDirectories
- {
- get;
- set;
- }
-
- String ShadowCopyFiles
- {
- get;
- set;
- }
-
- }
-}