I have a .NET assembly that has tens of classes and methods which are unit testing methods.
I want to generate a report with all the method marked with attribute Ignore,
do you know a simple way to do that?
I have a .NET assembly that has tens of classes and methods which are
Share
You want the get Custom Attributes method
This method also exists on the method object, so you can iterate through all the types in your assembly and iterate through all their methods, and call the same method.
Edit, Here is some help with the powershell syntax, although I must say, I am NOT powershell fluent. I am sure someone can do this way better than the crap I have below.