aboutsummaryrefslogtreecommitdiff
path: root/src/tools/heat/Data/HarvesterWarnings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/heat/Data/HarvesterWarnings.cs')
-rw-r--r--src/tools/heat/Data/HarvesterWarnings.cs84
1 files changed, 0 insertions, 84 deletions
diff --git a/src/tools/heat/Data/HarvesterWarnings.cs b/src/tools/heat/Data/HarvesterWarnings.cs
deleted file mode 100644
index 1bbd5bed..00000000
--- a/src/tools/heat/Data/HarvesterWarnings.cs
+++ /dev/null
@@ -1,84 +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.Harvesters.Data
4{
5 using System.Resources;
6 using WixToolset.Data;
7
8#pragma warning disable 1591 // TODO: add documentation
9 public static class HarvesterWarnings
10 {
11 public static Message HeatIsDeprecated()
12 {
13 return Message(null, Ids.HeatIsDeprecated, "Heat is deprecated and will be removed in WiX v7. Consider alternative solutions, like the Files element.");
14 }
15
16 public static Message AssemblyHarvestFailed(string file, string message)
17 {
18 return Message(null, Ids.AssemblyHarvestFailed, "Could not harvest data from a file that was expected to be an assembly: {0}. If this file is not an assembly you can ignore this warning. Otherwise, this error detail may be helpful to diagnose the failure: {1}", file, message);
19 }
20
21 public static Message DuplicateDllRegistryEntry(string registryKey, string componentId)
22 {
23 return Message(null, Ids.DuplicateDllRegistryEntry, "Ignoring the registry key '{0}', it has already been added to the component '{1}'.", registryKey, componentId);
24 }
25
26 public static Message DuplicateDllRegistryEntry(string registryKey, string registryKeyValue, string componentId)
27 {
28 return Message(null, Ids.DuplicateDllRegistryEntry, "Ignoring the registry key '{0}', it has already been added to the component '{2}'. The registry key value '{1}' will not be harvested.", registryKey, registryKeyValue, componentId);
29 }
30
31 public static Message EncounteredNullDirectoryForWebSite(string directory)
32 {
33 return Message(null, Ids.EncounteredNullDirectoryForWebSite, "Could not harvest website directory: {0}. Please update the output with the appropriate directory ID before using.", directory);
34 }
35
36 public static Message NoLogger(string exceptionMessage)
37 {
38 return Message(null, Ids.NoLogger, "Failed to set loggers: {0}", exceptionMessage);
39 }
40
41 public static Message NoProjectConfiguration(string exceptionMessage)
42 {
43 return Message(null, Ids.NoProjectConfiguration, "Failed to set project configuration and platform: {0}", exceptionMessage);
44 }
45
46 public static Message SelfRegHarvestFailed(string file, string message)
47 {
48 return Message(null, Ids.SelfRegHarvestFailed, "Could not harvest data from a file that was expected to be a SelfReg DLL: {0}. If this file does not support SelfReg you can ignore this warning. Otherwise, this error detail may be helpful to diagnose the failure: {1}", file, message);
49 }
50
51 public static Message TypeLibLoadFailed(string file, string message)
52 {
53 return Message(null, Ids.TypeLibLoadFailed, "Could not load file that was expected to be a type library based off of file extension: {0}. If this file is not a type library you can ignore this warning. Otherwise, this error detail may be helpful to diagnose the load failure: {1}", file, message);
54 }
55
56 public static Message UnsupportedRegistryType(string registryValue, int regFileLineNumber, string unsupportedType)
57 {
58 return Message(null, Ids.UnsupportedRegistryType, "Ignoring the registry value '{0}' found on line {1}, because it is of a type unsupported by Windows Installer ({2}).", registryValue, regFileLineNumber, unsupportedType);
59 }
60
61 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
62 {
63 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, format, args);
64 }
65
66 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, ResourceManager resourceManager, string resourceName, params object[] args)
67 {
68 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, resourceManager, resourceName, args);
69 }
70
71 public enum Ids
72 {
73 HeatIsDeprecated = 5149,
74 SelfRegHarvestFailed = 5150,
75 AssemblyHarvestFailed = 5151,
76 TypeLibLoadFailed = 5152,
77 DuplicateDllRegistryEntry = 5156,
78 UnsupportedRegistryType = 5157,
79 NoProjectConfiguration = 5398,
80 NoLogger = 5399,
81 EncounteredNullDirectoryForWebSite = 5400,
82 }
83 }
84}