Microsoft.VisualStudio.Project.DesignTimeAssemblyResolution.RarInputs.GetAllowedAssemblyExtensions C# (CSharp) 메소드

GetAllowedAssemblyExtensions() 보호된 정적인 메소드

protected static GetAllowedAssemblyExtensions ( Microsoft.Build.Execution.ProjectInstance projectInstance ) : string[]
projectInstance Microsoft.Build.Execution.ProjectInstance
리턴 string[]
            protected static string[] GetAllowedAssemblyExtensions(ProjectInstance projectInstance)
            {
                string[] allowedAssemblyExtensions;

                string val = projectInstance.GetPropertyValue(AllowedReferenceAssemblyFileExtensions).Trim();

                allowedAssemblyExtensions = val.Split(';').Select(s => s.Trim()).ToArray();

                return allowedAssemblyExtensions;
            }