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

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