I downloaded the NHibernateContrib zip and I wanted to fully build and test it. In particular, I wanted to add new features to the Nullable Types (to address my own JIRA issue... :wink: ). I must say I did try to find some info on this but to no avail.
So I tried building it using Visual Studio .NET - the straightforward way: open the .sln file and Rebuild Solution. I had a few errors from not having the .snk which I assume are normal since probably it shouldn't be distributed but to team members. So I commented out all the
Code:
//[assembly: AssemblyKeyFileAttribute("..\\..\\NHibernate.snk")]
lines from the AssemblyInfo.cs files.
Now the error I'm still getting is:
C:\Projectos\NHibernateContrib\src\NHibernate.Mapping.Attributes\HbmWriter.cs(1999,100): error CS0246: The type or namespace name 'CacheAttribute' could not be found (are you missing a using directive or an assembly reference?)
I ran a
Find on CacheAttribute in both the NHibernate and the Contrib solutions and its declaration was nowhere to be found (by me maybe? :o ).
I won't even bother asking if I'm doing anything wrong. I'll just plainly ask WHAT am I doing wrong?! :lol:
Thanks in advance.