First of all, I want to say that I'm still new to ASP.NET development. I think this is a simple question, but I can not find the answer anywhere. Here is my problem:
I have a large ASP.NET project developed in .NET 2.0. Now I need to upgrade this project to .NET 4.0. I think it was very good when I downloaded and converted it to .NET 4.0 with VS2010, but there is this missing link.
The invalid link is MSutil.dll, and I don’t know what the link is because I cannot find the DLL anywhere. In cs code, it is used as follows:
using LogQuery = MSUtil.LogQueryClassClass; using IisW3cLogInputClass = MSUtil.COMIISW3CInputContextClassClass; using LogRecordSet = MSUtil.ILogRecordset; using LogRecord = MSUtil.ILogRecord;
Can anyone tell me ...
- What is this link for?
- Where can I find / download it?
- How can I enable / install it in my solution?
source share