SparkViewEngine / spark

Spark is a view engine for ASP.NET MVC and Castle Project MonoRail frameworks. The idea is to allow the html to dominate the flow and any code to fit seamlessly.
Apache License 2.0
260 stars 86 forks source link

Spark no longer depends on System.Web #71

Closed bounav closed 2 years ago

bounav commented 2 years ago

Breaking Change

If you configure spark from your App.config (or Web.config) file you will need to adjust the assembly part of the fully qualified name for the <section type="..." /> tag.

<?xml version="1.0"?>
<configuration>
  <configSections>
    <section name="spark" type="Spark.Configuration.SparkSectionHandler, Spark"/>
  </configSections>
  <spark>...</spark>
</configuration>

Becomes

<?xml version="1.0"?>
<configuration>
  <configSections>
    <section name="spark" type="Spark.Configuration.SparkSectionHandler, Spark.Web"/>
  </configSections>
  <spark>...</spark>
</configuration>

NB: We'll have to update the relevant wiki page when this is released.