Note! There's a breaking change in the <spark> config section... The
<add namespace=""/> elements have moved to a <pages> element, which is
following the config structure of
asp.net.
<spark>
<compilation debug="true|false">
<assemblies><add assembly=""/></assemblies>
</compilation>
<pages pageBaseType="fullname, assembly">
<namespaces><add namespace=""/></namespaces>
</pages>
</spark>
The samples folder is also part of the release zip... There aren't too
many samples yet.
One of them is how you would use a windsor container to create your
view instances. It also shows how you would use a custom base class
for views to add public properties and methods.
That's in case you want to use things like INavRepository from views
and partials. You could put public INavRepository Nav {get;set;} in
your view base class and windsor will hook you up with it.
The other sample is showing the compile-on-start and the load-
precompiled-assembly scenarios. The castle precompile isn't
implemented yet - that'll follow soon - but there's a chance this
could be used in
asp.net mvc now to deploy to medium trust
environments.