Microsoft.VisualStudio.Project.DesignTimeAssemblyResolution.RarInputs.GetPdtarSearchPaths C# (CSharp) Method

GetPdtarSearchPaths() protected static method

protected static GetPdtarSearchPaths ( Microsoft.Build.Execution.ProjectInstance projectInstance ) : string[]
projectInstance Microsoft.Build.Execution.ProjectInstance
return string[]
            protected static string[] GetPdtarSearchPaths(ProjectInstance projectInstance)
            {
                string val = projectInstance.GetPropertyValue(ProjectDesignTimeAssemblyResolutionSearchPaths).Trim();

                string[] _pdtarSearchPaths = val.Split(';').Select(s => s.Trim()).ToArray();

                return _pdtarSearchPaths;
            }