Is there an easy way to print (to a text file) the path of all 'References' in a .NET project?
In the IDE, one could see the path of each, but if I want that printed for all references in a project, do you know how can this be done?
Thanks.
|
Is there an easy way to print (to a text file) the path of all 'References' in a .NET project? In the IDE, one could see the path of each, but if I want that printed for all references in a project, do you know how can this be done? Thanks. |
|||
|
|
|
If you look at the csproj file (assuming it's a C# project you will find something like this:
You could read the project file as a XML document and fire up some XPath queries and do a Console.Writeline. |
|||||||||
|