My question is about http://fluentvalidation.codeplex.com library. I download .dll's from this link and include in project library FluentValidation.Mvc.dll

using FluentValidation.Mvc;
class QuestionValidator:AbstractValidator<Question>
{
}

But resharper don't suggest me some including variants. It means that I included wrong lbrary or not included some other. If I need to include other library, can you explain what's wrong and give me link to download it?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 2 down vote accepted

I encourage you to instal this using NuGet. It does everything to work well.

In Visual Studio do this

Tools > Library Package Manager > Package Manager Console

Then enter Install-Package FluentValidation.MVC3

OR

right click on your project > Add Library Package Reference > search for FluentValidation

enter image description here

link|improve this answer
Many thanks to you! I found NuGet for me :) – Evgeny Levin Feb 2 at 0:05
Glad to help! Have a nice day! – dknaack Feb 2 at 0:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.