Пример #1
0
            public static SystemPathResolver Create()
            {
                SystemPathResolver resolver = new SystemPathResolver();

                resolver.Initialize(Environment.CurrentDirectory);

                return(resolver);
            }
Пример #2
0
        public static BuildPathResolver Create(string basePath)
        {
            if (String.IsNullOrEmpty(basePath))
            {
                basePath = Environment.CurrentDirectory;
            }

            SystemPathResolver resolver = new SystemPathResolver();

            resolver.Initialize(basePath);

            return(resolver);
        }