main
cs 19 lines 631 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.Core.ExtensibilityServices
4 {
5 using WixToolset.Extensibility.Data;
6
7 internal class ExtensionCacheLocation : IExtensionCacheLocation
8 {
9 public ExtensionCacheLocation(string path, ExtensionCacheLocationScope scope)
10 {
11 this.Path = path;
12 this.Scope = scope;
13 }
14
15 public string Path { get; }
16
17 public ExtensionCacheLocationScope Scope { get; }
18 }
19 }