aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core.Burn/BurnBackendWarnings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/WixToolset.Core.Burn/BurnBackendWarnings.cs')
-rw-r--r--src/WixToolset.Core.Burn/BurnBackendWarnings.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/WixToolset.Core.Burn/BurnBackendWarnings.cs b/src/WixToolset.Core.Burn/BurnBackendWarnings.cs
new file mode 100644
index 00000000..9b2fa6c9
--- /dev/null
+++ b/src/WixToolset.Core.Burn/BurnBackendWarnings.cs
@@ -0,0 +1,24 @@
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.Burn
4{
5 using WixToolset.Data;
6
7 internal static class BurnBackendWarnings
8 {
9 //public static Message ReplaceThisWithTheFirstWarning(SourceLineNumber sourceLineNumbers)
10 //{
11 // return Message(sourceLineNumbers, Ids.ReplaceThisWithTheFirstWarning, "format string", arg1, arg2);
12 //}
13
14 private static Message Message(SourceLineNumber sourceLineNumber, Ids id, string format, params object[] args)
15 {
16 return new Message(sourceLineNumber, MessageLevel.Warning, (int)id, format, args);
17 }
18
19 public enum Ids
20 {
21 // ReplaceThisWithTheFirstWarning = 8500,
22 }
23 }
24}