aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Data/Rows/FileAssemblyType.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Data/Rows/FileAssemblyType.cs')
-rw-r--r--src/WixToolset.Data/Rows/FileAssemblyType.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/WixToolset.Data/Rows/FileAssemblyType.cs b/src/WixToolset.Data/Rows/FileAssemblyType.cs
deleted file mode 100644
index 6e92a083..00000000
--- a/src/WixToolset.Data/Rows/FileAssemblyType.cs
+++ /dev/null
@@ -1,19 +0,0 @@
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.Data.Rows
4{
5 /// <summary>
6 /// Every file row has an assembly type.
7 /// </summary>
8 public enum FileAssemblyType
9 {
10 /// <summary>File is not an assembly.</summary>
11 NotAnAssembly,
12
13 /// <summary>File is a Common Language Runtime Assembly.</summary>
14 DotNetAssembly,
15
16 /// <summary>File is Win32 SxS assembly.</summary>
17 Win32Assembly,
18 }
19}