这是我在 StackOverflow 上的第一个问题,所以嗨 :)
是否可以在 t4 模板中使用 Assembly.Load() 按程序集名称加载程序集?我想用它来获取加载程序集中具有 ServiceContract 属性的所有类型。
var loadedAssembly = Assembly.Load(assemblyName);
var types = from type in loadedAssembly.GetTypes()
where Attribute.IsDefined(type, typeof(ServiceContractAttribute))select type;
在我的模板所在的项目中引用了所需的程序集。我发现
<#@ assembly name="$(TargetDir)\DesiredAssemblyName.dll" #>
var loadedAssembly = Assembly.GetAssembly(typeof(SomeType));
有效,但它似乎不是一个好的解决方案。此外,我希望该模板在构建后以及在 .csproj 中添加以下行时进行转换
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\
TextTemplating\v10.0\Microsoft.TextTemplating.targets"/>
<PropertyGroup>
<TransformOnBuild>true</TransformOnBuild>
</PropertyGroup>
<ItemGroup>
<!--Add VS\...\PublicAssemblies to the list of places
to look for assemblies used by templates.-->
<T4ReferencePath Include="..\Onii.Vespa.AppServer\"/>
</ItemGroup>
使用 Assembly.GetAssembly 的解决方案也不起作用。感谢您的所有建议。