VsTeXProject.VisualStudio.Project.ProjectNode.GetAssemblyName C# (CSharp) Method

GetAssemblyName() private method

private GetAssemblyName ( Microsoft.Build.Execution properties ) : string
properties Microsoft.Build.Execution
return string
        private string GetAssemblyName(MSBuildExecution.ProjectInstance properties)
        {
            CurrentConfig = properties;
            string name = null;

            name = GetProjectProperty(ProjectFileConstants.AssemblyName);
            if (name == null)
                name = Caption;

            var outputtype = GetProjectProperty(ProjectFileConstants.OutputType, false);

            if (outputtype == "library")
            {
                outputtype = outputtype.ToLowerInvariant();
                name += ".dll";
            }
            else
            {
                name += ".exe";
            }

            return name;
        }

Same methods

ProjectNode::GetAssemblyName ( string config ) : string
ProjectNode