This file contains hidden or 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
DependencyResolver.SetResolver(new StructureMapContainer(container)); |
This file contains hidden or 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
<system.web.webPages.razor> | |
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, | |
Culture=neutral, PublicKeyToken=31BF3856AD364E35" /> | |
<pages pageBaseType="System.Web.Mvc.WebViewPage"> | |
<namespaces> | |
<add namespace="System.Web.Mvc" /> | |
<add namespace="System.Web.Mvc.Ajax" /> | |
<add namespace="System.Web.Mvc.Html" /> | |
<add namespace="System.Web.Routing" /> | |
</namespaces> |
This file contains hidden or 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
<appSettings> | |
<add key="enableSimpleMembership" value="false" /> | |
<add key="ClientValidationEnabled" value="false"/> | |
<add key="UnobtrusiveJavaScriptEnabled" value="true"/> | |
</appSettings> |
This file contains hidden or 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
<add assembly="WebMatrix.Data, Version=1.0.0.0, Culture=neutral, | |
PublicKeyToken=31BF3856AD364E35" /> | |
<add assembly="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, | |
PublicKeyToken=31BF3856AD364E35" /> | |
<add assembly="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, | |
PublicKeyToken=31BF3856AD364E35" /> |
This file contains hidden or 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
<add namespace="System.Web.WebPages"/> | |
<add namespace="System.Web.Helpers" /> |
This file contains hidden or 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
@{ | |
LayoutPage = "~/Views/Shared/_Layout.cshtml"; | |
} |
This file contains hidden or 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
@{ | |
Layout = "~/Views/Shared/_Layout.cshtml"; | |
} |
This file contains hidden or 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
<configuration> | |
<system.diagnostics> | |
<switches> | |
<add name="System.Workflow LogToTraceListeners" value="1" /> | |
<add name="System.Workflow.Runtime.Hosting" value="Verbose" /> | |
<add name="System.Workflow.Runtime" value="Verbose" /> | |
<add name="System.Workflow.Runtime.Tracking" value="Verbose" /> | |
<add name="System.Workflow.Activities" value="Verbose" /> | |
<add name="System.Workflow.Activities.Rules" value="Verbose" /> | |
</switches> |
This file contains hidden or 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
<system.diagnostics> | |
<switches> | |
<add name="System.Workflow LogToTraceListeners" value="1" /> | |
<add name="System.Workflow.Runtime" value="Error"/> | |
<add name="System.Workflow.Runtime.Hosting" value="Error"/> | |
<add name="System.Workflow.Runtime.Tracking" value="Error"/> | |
<add name="System.Workflow.Activities" value="Error"/> | |
<add name="System.Workflow.Activities.Rules" value="Off"/> | |
</switches> | |
<trace autoflush="true"> |
This file contains hidden or 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
<sources> | |
<source name="System.Workflow"> | |
<listeners> | |
<add name="System.Workflow" /> | |
</listeners> | |
</source> | |
<source name="System.Workflow.Runtime"> | |
<listeners> | |
<add name="System.Workflow" /> | |
</listeners> |