tags:

views:

559

answers:

1

Im trying to follow this guide:

http://www.castleproject.org/others/nvelocity/usingit.html

Can you tell me what dlls I have to include to get his working:

VelocityEngine velocity = new VelocityEngine();

ExtendedProperties props = new ExtendedProperties();
velocity.Init(props);

I included the whole castle project and that still didnt work.

A: 

You need to reference NVelocity.dll. This doesn't seem to be part of the main Castle project.

The last stable release of this was 1.0.3 RC3 (according to this page). You can get this whole release from here, under the "1.0 Release Candidate 3" section. If you download the binaries, the NVelocity.dll is packaged inside a zip file called external-dependencies.zip.

adrianbanks