首页 > 代码库 > t4模板生成 _references.js 文件
t4模板生成 _references.js 文件
t4模板功能:
指定目录,自动生成 _references.js 文件
相关文件说明:
_references.js 实现js智能提示。
注意事项:
hostspecific="true"
<#@ template debug="false" hostspecific="true" language="C#" #>
projectDir=Host.ResolveAssemblyReference("$(ProjectDir)");
源码:
<#@ template debug="false" hostspecific="true" language="C#" #><#@ assembly name="System.Core" #><#@ import namespace="System.Linq" #><#@ import namespace="System.IO" #><#@ import namespace="System.Collections.Generic" #><#@ output extension=".js" #><# projectDir=Host.ResolveAssemblyReference("$(ProjectDir)"); searchPaths=new string[]{"Scripts","Content\\ExtJs","Views"}; foreach(var person in this.GetJavascriptList()) { #>/// <reference path="<#= person #>" /><# } #><#+ string projectDir; string[] searchPaths; // 开始 public List<string> GetJavascriptList() { List<string> fileList=new List<string>(); foreach(var i in searchPaths){ GetFileList(Path.Combine(projectDir,i),ref fileList); } return fileList; } // 取单个目录Js文件列表 private void GetFileList(string path, ref List<string> fileList){ var files=Directory.GetFiles(path); var query=from i in files.Where(t=>validFile(t)) select formatPath(i); foreach(var i in query){ fileList.Add(i); } var folders=Directory.GetDirectories(path); foreach(var fo in folders){ GetFileList(fo,ref fileList); } } // 过滤文件 private bool validFile(string filePath){ var vaild=Path.GetExtension(filePath)==".js" && !filePath.Contains("_references.js"); return vaild; } // 格式化输出路径 private string formatPath(string filePath){ return filePath.ToLower() .Replace(projectDir,"~") .Replace("\\","/"); }#>
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。