Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8657349
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T15:29:58+00:00 2026-06-12T15:29:58+00:00

Is it possible to get all the referenced assemblies (within a Unit Test project)

  • 0

Is it possible to get all the referenced assemblies (within a Unit Test project) that have a custom attribute applied. I use the following code withing my application which works successfully:

var assemblies = System.Web.Compilation.BuildManager.GetReferencedAssemblies().Cast<Assembly>().Where(a => a.GetCustomAttributes(false).OfType<AssemblyCategoryAttribute>().Any()).ToList();

However System.Web.Compilation.BuildManager doesn’t work in my test project so I tried:

Assembly.GetExecutingAssembly().GetReferencedAssemblies().Select(a => Assembly.ReflectionOnlyLoad(a.FullName).Where(a => a.GetCustomAttributes(false).OfType<AssemblyCategoryAttribute>().Any()).ToList();

But this threw the error:

It is illegal to reflect on the custom attributes of a Type loaded via
ReflectionOnlyGetType (see Assembly.ReflectionOnly) — use
CustomAttributeData instead.

I’d appreciate it if someone could show me how to do this. Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T15:30:00+00:00Added an answer on June 12, 2026 at 3:30 pm

    Since you’re getting the referenced assemblies for the currently executing assembly, there is no reason to do a reflection-only load. ReflectionOnlyLoad is for when you want to look at the assemblies but not actually execute them. Since these assemblies are being referenced by the currently executing assembly, there most likely either are or will be loaded into the execution context anyway.

    Try just doing:

    Assembly
        .GetExecutingAssembly()
        .GetReferencedAssemblies()
        .Select(a => Assembly.Load(a.FullName))
        .Where(a => a.
                .GetCustomAttributes(false)
                .OfType<AssemblyCategoryAttribute>()
                .Any())
        .ToList();
    

    Or better yet:

    Assembly
        .GetExecutingAssembly()
        .GetReferencedAssemblies()
        .Select(Assembly.Load)
        .Where(a => a.IsDefined(typeof(AssemblyCategoryAttribute), false))
        .ToList();
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to get all div's within a page using jQuery including nested
Possible Duplicate: Get all files from VSS for a given date? I need to
Is it possible to get all 7 days for a given date using linq
Is it possible to get all/latest tweets from twitter public list? Example list: https://twitter.com/#!/thecaucus/u-s-senate
In C#, is it possible to get all values of a particular column from
Is there a way to get all possible values from a MySQL enum column?
I would like to get all possible available currencies. Java 7 had provided such
Possible Duplicate: How to get all of the IDs with jQuery? How can i
Possible Duplicate: Printing Table's structure/schema oracle has 'DESCRIBE' to get all the details of
Is it possible to get a list of all imported classes/namespaces in a PHP

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.