• T4模板引擎 参数调用


    1.首先解决语法高亮的问题,下载安装自选版本

    https://marketplace.visualstudio.com/items?itemName=tangibleengineeringGmbH.tangibleT4Editor240plusmodelingtoolsforVS2017

    2.  使用vs自带的TextTransform运行模板

    除了直接在vs中通过保存的方式运行模板,还可以通过使用vs安装目录下的TextTransform.exe来执行t4模板

    例如

    ```

    D:\VS2022\Enterprise\Common7\IDE\TextTransform.exe D:\work\code\test\Test.tt

    ```

    3. 参数

    使用TextTransform.exe时可以通过-a参数来传递参数,多个参数可以使用多个-a参数传递

    ***参数使用两个感叹号开始,使用单个感叹号作为值开始字段***  

    ```

     -a   !!ParameterName!st

    ```

    另外读取传递的参数,需要将t4模板上方的hostspecific="true"设置为true

    根据官方文档,t4模板内parameter 指令不检索在 TextTransform.exe 实用工具的 -a 参数中设置的值,若要获取这些值,在 template 指令中设置 hostSpecific="true",并使用 this.Host.ResolveParameterValue("","","argName")

    例如

    ```

    string parameterTest = Host.ResolveParameterValue(null, null, "ParameterName");

    ```

    如果需要在T4模板中使用json,可以在命令行中加入以下两个参数

    ```

    -r "Newtonsoft.Json"  -u "Newtonsoft.Json"

    ```

    如果需要包含ttinclude文件则需要通过 -I 参数导入ttinclude文件所在的目录,同时在引入文件内部需要的程序集即可

     其他功能类建议定义在ttinclude文件中,如果要引入在t4文件中需要将定义放在文件最后

    ```

    <#+ 类功能控制块 #> 

    ```

    ### 调试

    设置调试模式

    <#@ template debug="true" hostspecific="true" language="C#" #>

    添加下列代码

    System.Diagnostics.Debugger.Launch();

    ### 引用dll  相对路径

    1. <#@ assembly name="$(TargetDir)\DLLS\Test.dll" #>

    2. <#@ import namespace="Test.Util" #>

    ***需要使用-P参数传递dll所在路径才能正常执行,另外可以把VS中的t4文件属性中的自定义工具删除就可以解决VS找不到dll报错的问题***

    ### 路径空格问题可以使用base64的方式处理,system.texing无需引用其他dll即可在t4文件中得到支持

    [引用]

     https://blog.csdn.net/weixin_34220623/article/details/86403990?spm=1035.2023.3001.6557&utm_medium=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-1.pc_relevant_bbs_down_cate&depth_1-utm_source=distribute.pc_relevant_bbs_down_v2.none-task-blog-2~default~OPENSEARCH~Rate-1.pc_relevant_bbs_down_cate

    https://docs.microsoft.com/zh-cn/visualstudio/modeling/writing-a-t4-text-template?view=vs-2022

    https://docs.microsoft.com/zh-cn/visualstudio/modeling/generating-files-with-the-texttransform-utility?view=vs-2022

    https://devblogs.microsoft.com/devops/the-visual-studio-modeling-sdk-is-now-available-with-visual-studio-2017/

    https://docs.microsoft.com/zh-cn/visualstudio/modeling/generating-files-with-the-texttransform-utility?view=vs-2017

  • 相关阅读:
    [leetcode]Insert Interval @ Python
    [leetcode]Merge Intervals @ Python
    [leetcode]Maximum Subarray @ Python
    [leetcode]Jump Game II @ Python
    [leetcode]Jump Game @ Python
    [leetcode]Wildcard Matching @ Python
    tomcat 配置https 外部链接显示证书不安全 原因找到为其他地方的链接用的ip地址,证书是发给域名的所以报错
    netstat -tanp ss -lntup |grep
    https://www.pstips.net/ powershell
    awk之getline()函数运用
  • 原文地址:https://www.cnblogs.com/ives/p/8760661.html
Copyright © 2020-2023  润新知