-
Notifications
You must be signed in to change notification settings - Fork 86
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc64052
commit e778116
Showing
30 changed files
with
70 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,6 @@ src/Tools/SparkLanguagePackage/PackageLoadKey.h | |
|
||
#NuGet | ||
packages/ | ||
*.nupkg | ||
|
||
#ncrunch | ||
*ncrunch* | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System.Web.Mvc; | ||
using Spark; | ||
using Spark.Web.Mvc; | ||
|
||
[assembly: WebActivator.PreApplicationStartMethod(typeof($rootnamespace$.App_Start.SparkWebMvc), "Start")] | ||
|
||
namespace $rootnamespace$.App_Start { | ||
public static class SparkWebMvc { | ||
public static void Start() { | ||
var settings = new SparkSettings(); | ||
settings.SetAutomaticEncoding(true); | ||
|
||
// Note: you can change the list of namespace and assembly | ||
// references in Views\Shared\_global.spark | ||
SparkEngineStarter.RegisterViewEngine(settings); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<use namespace="System"/> | ||
<use namespace="System.Collections.Generic"/> | ||
<use namespace="System.Linq"/> | ||
<use namespace="System.Web.Mvc"/> | ||
<use namespace="System.Web.Routing"/> | ||
<use namespace="System.Web.Mvc.Html"/> | ||
|
||
<use assembly="Spark.Web.Mvc"/> | ||
<use assembly="System.Web.Mvc, Version=5.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<id>Spark.Web.Mvc5</id> | ||
<version>1.8.0.0</version> | ||
<authors>Louis DeJardin & Robert Greyling</authors> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Spark View Engine for ASP.NET MVC 5.</description> | ||
<summary>Spark View Engine for ASP.NET MVC 5.</summary> | ||
<language>en-US</language> | ||
<dependencies> | ||
<dependency id="Spark" version="1.8.0.0" /> | ||
<dependency id="WebActivator" version="2.0.6" /> | ||
</dependencies> | ||
</metadata> | ||
</package> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
// this is an auto-generated file#define VERSIONINFO_VERSIONSTRING "1.7.5.3"#define VERSIONINFO_MAJOR 1#define VERSIONINFO_MINOR 7#define VERSIONINFO_BUILD 5#define VERSIONINFO_REVISION 3#define VERSIONINFO_COPYRIGHT "Copyright (c) Louis DeJardin 2008-2013"#define VERSIONINFO_COMPANY "Louis DeJardin"#define VERSIONINFO_PRODUCT "Spark" | ||
// this is an auto-generated file#define VERSIONINFO_VERSIONSTRING "1.8.0.0"#define VERSIONINFO_MAJOR 1#define VERSIONINFO_MINOR 8#define VERSIONINFO_BUILD 0#define VERSIONINFO_REVISION 0#define VERSIONINFO_COPYRIGHT "Copyright (c) Louis DeJardin 2008-2015"#define VERSIONINFO_COMPANY "Louis DeJardin"#define VERSIONINFO_PRODUCT "Spark" |