colindcli / CodeGit

代码仓库
https://colindcli.github.io/CodeGit/
MIT License
0 stars 2 forks source link

T4模板中获取当前项目或解决方案路径 #23

Closed colindcli closed 7 years ago

colindcli commented 7 years ago
<#@ template debug="false" hostspecific="true" language="C#" #>  
<#  
    string solutionsPath = Host.ResolveAssemblyReference("$(SolutionDir)");  
    string projectPath = Host.ResolveAssemblyReference("$(ProjectDir)");  
#>  
<#=solutionsPath#>  
<#=projectPath#>