码迷,mamicode.com
首页 > Web开发 > 详细

t4模板生成 _references.js 文件

时间:2014-06-22 12:50:43      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   ext   

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("\\","/");
    }

#>

 

 

 

t4模板生成 _references.js 文件,布布扣,bubuko.com

t4模板生成 _references.js 文件

标签:style   class   blog   code   java   ext   

原文地址:http://www.cnblogs.com/xthzb/p/3801634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!