I am trying to find all assemblies in the current AppDomain, which are not part of the .NET framework (which means that they are either my own libraries or 3rd party libraries).
Is there any easier way to do it than hard-coding all the .NET Framework's assemblies names to my code and finding all Assemblies from AppDomain.CurrentDomain.GetAssemblies() which doesn't match any of them?