我正在使用需要实例化类的MSBuild任务。该类最初只有一个无参数构造函数,因此所需的所有MSBuild任务都是实例化类的类型名称。现在我们有一个用于为特定构造函数运行的任务的用例,我不知道如何以通用方式处理它。假设我需要实例化ClassA
的不同风格:
public class ClassA
{
public ClassA() { }
public ClassA(int someArgument) { }
public ClassA(int someArgument, bool someOtherArgument) { }
}
这就是原始任务的样子:
<DoSomethingTask Assembly="ContainsClassA.dll" Type="ClassA" />
我理想的任务看起来像这样,所以我可以调用任何具有原始类型作为参数的构造函数:
<DoSomethingTask Assembly="ContainsClassA.dll" Type="ClassA">
<ConstructorArgs>
<Arg type="int">1</Arg>
<Arg type="bool">True</Arg>
</ConstructorArgs>
</DoSomethingTask>
我很遗憾要搜索什么来获得这种功能。我可以做一些像创建一个名为ConstructorArgs
的字符串属性并使用我想要的任何格式解析它,但我希望有更清洁的东西存在。感谢您提供的任何帮助!
编辑 - 如果有人想知道,我正在尝试修改的实际任务会根据实例化的Entity Framework DbContext创建一个预生成的视图。我们有自己的DbContext子类和各种构造函数,我们希望能够在视图生成期间调用特定的子类。
答案 0 :(得分:0)
您可以尝试使用use reflection and get a constructor作为DBContext子类。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace TaskClass
{
// Class to be created
public class MyDbContext
{
public int ConstructorArg1 { get; set; }
public string ConstructorArg2 { get; set; }
public MyDbContext() { }
public MyDbContext(int constructorArg1)
{
ConstructorArg1 = constructorArg1;
}
public MyDbContext(int constructorArg1, string constructorArg2)
{
ConstructorArg1 = constructorArg1;
ConstructorArg2 = constructorArg2;
}
}
// MSBuild custom task
public class DoSomethingTask : Task
{
public override bool Execute()
{
var taskParameters = new TaskParametersInfo();
taskParameters.ExtractTaskParametersInfo(this);
var type = typeof(MyDbContext);
ConstructorInfo ctor = type.GetConstructor(taskParameters.Types.ToArray());
if (ctor == null)
{
// If the constructor is not found, throw an error
Log.LogError("There are no constructors defined with these parameters.");
return false;
}
// Create your instance
var myDbContext = (MyDbContext)ctor.Invoke(taskParameters.Values.ToArray());
return true;
}
public int ConstructorArg1
{
get;
set;
}
public string ConstructorArg2
{
get;
set;
}
public string ConstructorArg3
{
get;
set;
}
// Class to handle the task's parameters
internal class TaskParametersInfo
{
public List<Type> Types { get; set; }
public List<object> Values { get; set; }
public TaskParametersInfo()
{
Types = new List<Type>();
Values = new List<object>();
}
public void ExtractTaskParametersInfo(Task task)
{
foreach (var property in task.GetType().GetProperties(BindingFlags.Public | BindingFlags.DeclaredOnly | BindingFlags.Instance))
{
var propertyValue = property.GetValue(task, null);
if (propertyValue != null)
{
Types.Add(property.PropertyType);
Values.Add(propertyValue);
}
}
}
}
}
}
在msbuild项目中导入任务:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<Project ToolsVersion="4.0" defaultTarget="DoSomething" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<UsingTask TaskName="TaskClass.DoSomethingTask"
AssemblyFile="TaskClass\TaskClass\bin\Debug\TaskClass.dll"/>
<Target Name="DoSomething">
<DoSomethingTask ConstructorArg1="123" ConstructorArg2="Are u talking to me?" />
</Target>
</Project>
希望这有帮助。