From 4ebc33174c02e1c9f5693b5ef38ecfe3292c687f Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 11 Aug 2017 00:39:04 -0700 Subject: Move to .NET Core 2.0 --- src/WixToolset.Data/OutputType.cs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/WixToolset.Data/OutputType.cs (limited to 'src/WixToolset.Data/OutputType.cs') diff --git a/src/WixToolset.Data/OutputType.cs b/src/WixToolset.Data/OutputType.cs new file mode 100644 index 00000000..74381737 --- /dev/null +++ b/src/WixToolset.Data/OutputType.cs @@ -0,0 +1,31 @@ +// 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. + +namespace WixToolset.Data +{ + /// + /// Various types of output. + /// + public enum OutputType + { + /// Unknown output type. + Unknown, + + /// Bundle output type. + Bundle, + + /// Module output type. + Module, + + /// Patch output type. + Patch, + + /// Patch Creation output type. + PatchCreation, + + /// Product output type. + Product, + + /// Transform output type. + Transform + } +} -- cgit v1.2.3-55-g6feb