diff options
-rw-r--r-- | src/WixToolset.Core/IBinder.cs | 3 | ||||
-rw-r--r-- | src/WixToolset.Core/ICompiler.cs | 3 | ||||
-rw-r--r-- | src/WixToolset.Core/IDecompiler.cs | 3 | ||||
-rw-r--r-- | src/WixToolset.Core/ILayoutCreator.cs | 3 | ||||
-rw-r--r-- | src/WixToolset.Core/ILibrarian.cs | 3 | ||||
-rw-r--r-- | src/WixToolset.Core/ILinker.cs | 2 | ||||
-rw-r--r-- | src/WixToolset.Core/IResolver.cs | 3 |
7 files changed, 13 insertions, 7 deletions
diff --git a/src/WixToolset.Core/IBinder.cs b/src/WixToolset.Core/IBinder.cs index ec7ca4f5..a1b66f42 100644 --- a/src/WixToolset.Core/IBinder.cs +++ b/src/WixToolset.Core/IBinder.cs | |||
@@ -4,7 +4,8 @@ namespace WixToolset.Core | |||
4 | { | 4 | { |
5 | using WixToolset.Extensibility.Data; | 5 | using WixToolset.Extensibility.Data; |
6 | 6 | ||
7 | internal interface IBinder | 7 | #pragma warning disable 1591 // TODO: add documentation |
8 | public interface IBinder | ||
8 | { | 9 | { |
9 | IBindResult Bind(IBindContext context); | 10 | IBindResult Bind(IBindContext context); |
10 | } | 11 | } |
diff --git a/src/WixToolset.Core/ICompiler.cs b/src/WixToolset.Core/ICompiler.cs index 34a9a94a..0aae579a 100644 --- a/src/WixToolset.Core/ICompiler.cs +++ b/src/WixToolset.Core/ICompiler.cs | |||
@@ -5,7 +5,8 @@ namespace WixToolset.Core | |||
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Extensibility.Data; | 6 | using WixToolset.Extensibility.Data; |
7 | 7 | ||
8 | internal interface ICompiler | 8 | #pragma warning disable 1591 // TODO: add documentation |
9 | public interface ICompiler | ||
9 | { | 10 | { |
10 | Intermediate Compile(ICompileContext context); | 11 | Intermediate Compile(ICompileContext context); |
11 | } | 12 | } |
diff --git a/src/WixToolset.Core/IDecompiler.cs b/src/WixToolset.Core/IDecompiler.cs index fdb8c2d0..74ec26de 100644 --- a/src/WixToolset.Core/IDecompiler.cs +++ b/src/WixToolset.Core/IDecompiler.cs | |||
@@ -4,7 +4,8 @@ namespace WixToolset.Core | |||
4 | { | 4 | { |
5 | using WixToolset.Extensibility.Data; | 5 | using WixToolset.Extensibility.Data; |
6 | 6 | ||
7 | internal interface IDecompiler | 7 | #pragma warning disable 1591 // TODO: add documentation |
8 | public interface IDecompiler | ||
8 | { | 9 | { |
9 | IDecompileResult Decompile(IDecompileContext context); | 10 | IDecompileResult Decompile(IDecompileContext context); |
10 | } | 11 | } |
diff --git a/src/WixToolset.Core/ILayoutCreator.cs b/src/WixToolset.Core/ILayoutCreator.cs index 6b65e60f..cdff2a78 100644 --- a/src/WixToolset.Core/ILayoutCreator.cs +++ b/src/WixToolset.Core/ILayoutCreator.cs | |||
@@ -4,7 +4,8 @@ namespace WixToolset.Core | |||
4 | { | 4 | { |
5 | using WixToolset.Extensibility.Data; | 5 | using WixToolset.Extensibility.Data; |
6 | 6 | ||
7 | internal interface ILayoutCreator | 7 | #pragma warning disable 1591 // TODO: add documentation |
8 | public interface ILayoutCreator | ||
8 | { | 9 | { |
9 | void Layout(ILayoutContext context); | 10 | void Layout(ILayoutContext context); |
10 | } | 11 | } |
diff --git a/src/WixToolset.Core/ILibrarian.cs b/src/WixToolset.Core/ILibrarian.cs index fa1dd816..0fcedea5 100644 --- a/src/WixToolset.Core/ILibrarian.cs +++ b/src/WixToolset.Core/ILibrarian.cs | |||
@@ -5,7 +5,8 @@ namespace WixToolset.Core | |||
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Extensibility.Data; | 6 | using WixToolset.Extensibility.Data; |
7 | 7 | ||
8 | internal interface ILibrarian | 8 | #pragma warning disable 1591 // TODO: add documentation |
9 | public interface ILibrarian | ||
9 | { | 10 | { |
10 | Intermediate Combine(ILibraryContext context); | 11 | Intermediate Combine(ILibraryContext context); |
11 | } | 12 | } |
diff --git a/src/WixToolset.Core/ILinker.cs b/src/WixToolset.Core/ILinker.cs index 6a7fe0f7..11cc2c87 100644 --- a/src/WixToolset.Core/ILinker.cs +++ b/src/WixToolset.Core/ILinker.cs | |||
@@ -5,7 +5,7 @@ namespace WixToolset.Core | |||
5 | using WixToolset.Data; | 5 | using WixToolset.Data; |
6 | using WixToolset.Extensibility.Data; | 6 | using WixToolset.Extensibility.Data; |
7 | 7 | ||
8 | #pragma warning disable 1591 // TODO: add documentation, move into Extensibility | 8 | #pragma warning disable 1591 // TODO: add documentation |
9 | public interface ILinker | 9 | public interface ILinker |
10 | { | 10 | { |
11 | Intermediate Link(ILinkContext context); | 11 | Intermediate Link(ILinkContext context); |
diff --git a/src/WixToolset.Core/IResolver.cs b/src/WixToolset.Core/IResolver.cs index 661972c4..3004ad2c 100644 --- a/src/WixToolset.Core/IResolver.cs +++ b/src/WixToolset.Core/IResolver.cs | |||
@@ -4,7 +4,8 @@ namespace WixToolset.Core | |||
4 | { | 4 | { |
5 | using WixToolset.Extensibility.Data; | 5 | using WixToolset.Extensibility.Data; |
6 | 6 | ||
7 | internal interface IResolver | 7 | #pragma warning disable 1591 // TODO: add documentation |
8 | public interface IResolver | ||
8 | { | 9 | { |
9 | IResolveResult Resolve(IResolveContext context); | 10 | IResolveResult Resolve(IResolveContext context); |
10 | } | 11 | } |