Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-11-20 00:01:17 +0400
committerAtsushi Eno <atsushieno@veritas-vos-liberabit.com>2013-12-03 11:51:47 +0400
commit5b42283cadfcab3e2dd6e1cf4a7556703ec38db9 (patch)
tree9727d22f1bbed8dfead6c664a25c45fa55de247a /mcs/class/Microsoft.Build.Framework
parentc3c1b455b43708cbf23bdbd86d6b8c1829dcb44f (diff)
ITaskFactory2 is public.
Diffstat (limited to 'mcs/class/Microsoft.Build.Framework')
-rw-r--r--mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/ITaskFactory2.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/ITaskFactory2.cs b/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/ITaskFactory2.cs
index 4659870f511..9b53560ec76 100644
--- a/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/ITaskFactory2.cs
+++ b/mcs/class/Microsoft.Build.Framework/Microsoft.Build.Framework/ITaskFactory2.cs
@@ -3,7 +3,7 @@ using System.Collections.Generic;
namespace Microsoft.Build.Framework
{
- interface ITaskFactory2 : ITaskFactory
+ public interface ITaskFactory2 : ITaskFactory
{
ITask CreateTask (IBuildEngine taskFactoryLoggingHost, IDictionary<string, string> taskIdentityParameters);
bool Initialize (string taskName, IDictionary<string, string> factoryIdentityParameters, IDictionary<string, TaskPropertyInfo> parameterGroup, string taskBody, IBuildEngine taskFactoryLoggingHost);