我试图遵循此指南:

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

您能告诉我我必须包括哪些dll才能使其工作:

VelocityEngine velocity = new VelocityEngine();

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


我包括了整个城堡项目,但仍然没有成功。

最佳答案

您需要引用NVelocity.dll。这似乎不是主要的Castle项目的一部分。

该文件的最后一个稳定版本是1.0.3 RC3(根据this页)。您可以从here的“ 1.0 Release Candidate 3”部分下获得整个发行版。如果下载二进制文件,则NVelocity.dll将打包在一个名为external-dependencies.zip的zip文件中。

10-08 01:07