Microsoft.VisualStudio.Project.ProjectNode.GetOutputPath C# (CSharp) Method

GetOutputPath() private method

private GetOutputPath ( Microsoft.Build.Execution properties ) : string
properties Microsoft.Build.Execution
return string
        private string GetOutputPath(MSBuildExecution.ProjectInstance properties)
        {
            this.currentConfig = properties;
            string outputPath = GetProjectProperty("OutputPath");

            if (!String.IsNullOrEmpty(outputPath))
            {
                outputPath = outputPath.Replace('/', Path.DirectorySeparatorChar);
                if (outputPath[outputPath.Length - 1] != Path.DirectorySeparatorChar)
                    outputPath += Path.DirectorySeparatorChar;
            }

            return outputPath;
        }

Same methods

ProjectNode::GetOutputPath ( string config ) : string
ProjectNode