BitMiracle.VisualStudioConverter.CSScript.Options.Options C# (CSharp) Method

Options() public method

public Options ( string pathToVS2010Solution ) : System
pathToVS2010Solution string
return System
        public Options(string pathToVS2010Solution)
        {
            if (String.IsNullOrEmpty(pathToVS2010Solution))
                throw new ArgumentNullException("pathToVS2010Solution");

            m_pathToSolution = pathToVS2010Solution;

            m_resultDirectory = m_pathToSolution; // result directory is the same with directory with solution by default
        }
Options