我想获得对T4模板所在项目的装配的引用。我知道我可以通过例如Host.ResolveAssemblyReference("$(ProjectDir)")
获取项目的路径,我可以添加bin\\debug\\{projectName}.dll
,因为我的程序集名称是按项目名称命名的,但情况并非总是如此,我正在创建可重用的模板,所以我需要dll的路径或最好的Assembly
实例。
我还在方法Project
中找到了如GetProjectContainingT4File
所述{{1}}的引用,但接着是什么?
有办法搞定吗?
BTW,我需要这个引用来访问特定类型并从中生成一些代码。
答案 0 :(得分:11)
遵循简单的代码(VS 2013):
var path = this.Host.ResolveAssemblyReference("$(TargetPath)");
var asm = Assembly.LoadFrom(path);
您还可以在项目psot构建步骤编辑器中找到$(...)
属性。
答案 1 :(得分:9)
好的,我设法得到了汇编@FuleSnabel所需的参考给了我一个提示,虽然我没有使用他的建议。
以下是我的T4模板的一部分:
<#@ template debug="true" hostSpecific="true" #>
<#@ output extension=".output" #>
<#@ Assembly Name="System.Core.dll" #>
<#@ Assembly Name="System.Windows.Forms.dll" #>
<#@ Assembly Name="System.Xml.Linq.dll" #>
<#@ Assembly Name="Microsoft.VisualStudio.Shell.Interop.8.0" #>
<#@ Assembly Name="EnvDTE" #>
<#@ Assembly Name="EnvDTE80" #>
<#@ Assembly Name="VSLangProj" #>
<#@ import namespace="System" #>
<#@ import namespace="System.IO" #>
<#@ import namespace="System.Diagnostics" #>
<#@ import namespace="System.Linq" #>
<#@ import namespace="System.Xml.Linq" #>
<#@ import namespace="System.Collections" #>
<#@ import namespace="System.Reflection" #>
<#@ import namespace="System.Collections.Generic" #>
<#@ import namespace="Microsoft.VisualStudio.TextTemplating" #>
<#@ import namespace="Microsoft.VisualStudio.Shell.Interop" #>
<#@ import namespace="EnvDTE" #>
<#@ import namespace="EnvDTE80" #>
<#@ include file="T4Toolbox.tt" #>
<#
Project prj = GetProject();
string fileName = "$(ProjectDir)bin\\debug\\" + prj.Properties.Item("OutputFileName").Value;
string path = Host.ResolveAssemblyReference(fileName);
Assembly asm = Assembly.LoadFrom(path);
// ....
#>
// generated code goes here
<#+
Project GetProject()
{
var serviceProvider = Host as IServiceProvider;
if (serviceProvider == null)
{
throw new Exception("Visual Studio host not found!");
}
DTE dte = serviceProvider.GetService(typeof(SDTE)) as DTE;
if (dte == null)
{
throw new Exception("Visual Studio host not found!");
}
ProjectItem projectItem = dte.Solution.FindProjectItem(Host.TemplateFile);
if (projectItem.Document == null) {
projectItem.Open(Constants.vsViewKindCode);
}
return projectItem.ContainingProject;
}
#>
因此,要找到正确的汇编路径,我必须在GetProject()
方法中引用该项目,然后将项目的属性OutputFileName
与prj.Properties.Item("OutputFileName").Value
一起使用。由于我找不到属性项目的任何地方,我使用枚举和循环来检查Properties
集合,然后找到我需要的东西。这是一个循环代码:
<#
// ....
foreach(Property prop in prj.Properties)
{
#>
<#= prop.Name #>
<#
}
// ....
#>
我希望这会对某人有所帮助。