aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.ExtensionCache/CachedExtension.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2020-06-08 16:26:59 -0700
committerRob Mensching <rob@firegiant.com>2020-06-08 16:37:14 -0700
commit02cdf55197d599d4d1fd611ad749d01f5c47a01f (patch)
tree76fcd573827fdb6b142197baa3237e6310a7bd4d /src/WixToolset.Core.ExtensionCache/CachedExtension.cs
parent04b8976ca565ce95cf32a58c8725843618724383 (diff)
downloadwix-02cdf55197d599d4d1fd611ad749d01f5c47a01f.tar.gz
wix-02cdf55197d599d4d1fd611ad749d01f5c47a01f.tar.bz2
wix-02cdf55197d599d4d1fd611ad749d01f5c47a01f.zip
Add "extension" command
Diffstat (limited to 'src/WixToolset.Core.ExtensionCache/CachedExtension.cs')
-rw-r--r--src/WixToolset.Core.ExtensionCache/CachedExtension.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/WixToolset.Core.ExtensionCache/CachedExtension.cs b/src/WixToolset.Core.ExtensionCache/CachedExtension.cs
new file mode 100644
index 00000000..9ed874d9
--- /dev/null
+++ b/src/WixToolset.Core.ExtensionCache/CachedExtension.cs
@@ -0,0 +1,20 @@
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
3namespace WixToolset.Core.ExtensionCache
4{
5 public class CachedExtension
6 {
7 internal CachedExtension(string id, string version, bool damaged)
8 {
9 this.Id = id;
10 this.Version = version;
11 this.Damaged = damaged;
12 }
13
14 public string Id { get; }
15
16 public string Version { get; }
17
18 public bool Damaged { get; }
19 }
20}