public MFSvcUtil(string buildTreeRoot)
        {
            ILocator locator = LocatorFactory.GetLocator(buildTreeRoot);

            m_Exe = new TypedFileInfo(locator.Tools + "mfsvcutil.exe", ".exe");
        }
示例#2
0
 public DllFile(string path)
 {
     m_FileInfo = new TypedFileInfo(path, ".dll");
 }
示例#3
0
 public CodeFile(string path)
 {
     m_FileInfo = new TypedFileInfo(path, ".cs");
 }
示例#4
0
 public ExeFile(string path)
 {
     m_FileInfo = new TypedFileInfo(path, ".exe");
 }
示例#5
0
 public WsdlFileX(string path)
 {
     m_FileInfo = new TypedFileInfo(path, ".wsdl");
 }