RE: Dll Version Tool Utiliuty exist?

2013-03-12 Thread ifumust
Didn't know that J thanks From: ozdotnet-boun...@ozdotnet.com [mailto:ozdotnet-boun...@ozdotnet.com] On Behalf Of Greg Keogh Sent: Wednesday, 13 March 2013 3:30 PM To: ozDotNet Subject: Re: Dll Version Tool Utiliuty exist? You can also search for files in Windows Explorer details vie

Re: Dll Version Tool Utiliuty exist?

2013-03-12 Thread Greg Keogh
You can also search for files in Windows Explorer details view and show the Version column(s) -- Greg

Re: Dll Version Tool Utiliuty exist?

2013-03-12 Thread Preet Sangha
If you use Powershell you can grep a list of files: Get-Item? and then use this logic to get the version [Reflection.AssemblyName]::GetAssemblyName('full path to the assembly').Version You shoul dbe able to grok something up quite quickly? (from http://oncoding.blogspot.co.nz/2012/04/net-asse

Dll Version Tool Utiliuty exist?

2013-03-12 Thread ifumust
It would be great if their existed a find file tool that allows you to find a dotnet dll with a particular version no? I have many projects using the same dll reference but sometimes the versions differ, hence, having issues deploying. Anthony