ERROR Rendering ControlErrors while compiling a Template.
Please try the following to solve the situation:
* If the problem is about missing/invalid references or multiple defines either try to load
the missing references manually (in the compiling appdomain!) or
Specify your references manually by providing your own IReferenceResolver implementation.
See https://antaris.github.io/RazorEngine/ReferenceResolver.html for details.
Currently all references have to be available as files!
* If you get 'class' does not contain a definition for 'member':
try another modelType (for example 'null' to make the model dynamic).
NOTE: You CANNOT use typeof(dynamic) to make the model dynamic!
Or try to use static instead of anonymous/dynamic types.
More details about the error:
- error: (32, 7) Cannot assign method group to an implicitly-typed local variable
- error: (34, 22) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'CategoryChildren' and the best extension method overload 'Emanager.Razor.HtmlCategoryExtensions.CategoryChildren(Emanager.Razor.Html)' has some invalid arguments
- error: (34, 22) Instance argument: cannot convert from 'System.Collections.Generic.IEnumerable' to 'Emanager.Razor.Html'
- error: (37, 29) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Assets' and no extension method 'Assets' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (43, 29) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Path' and no extension method 'Path' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (44, 20) 'System.Collections.Generic.List' does not contain a definition for 'FirstOrDefault' and the best extension method overload 'System.Linq.Enumerable.FirstOrDefault(System.Collections.Generic.IEnumerable, System.Func)' has some invalid arguments
- error: (44, 51) Argument 2: cannot convert from 'lambda expression' to 'System.Func'
- error: (76, 91) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Name' and no extension method 'Name' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (79, 91) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Id' and no extension method 'Id' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (85, 93) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Name' and no extension method 'Name' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (373, 97) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Name' and no extension method 'Name' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (376, 131) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Id' and no extension method 'Id' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (386, 205) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Name' and no extension method 'Name' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (389, 239) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Id' and no extension method 'Id' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (399, 320) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Name' and no extension method 'Name' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
- error: (402, 354) 'System.Collections.Generic.IEnumerable' does not contain a definition for 'Id' and no extension method 'Id' accepting a first argument of type 'System.Collections.Generic.IEnumerable' could be found (are you missing a using directive or an assembly reference?)
Temporary files of the compilation can be found in (please delete the folder): C:\Windows\TEMP\RazorEngine_wiitfibp.p11
The template we tried to compile is:
------------- START -----------
@{
var category = @Model.Model;
var products = category.Products;
var commonProducts = products.Where(p => p.Attributes.Any(a => a.Key.Equals("Commonparts", StringComparison.OrdinalIgnoreCase))).OrderBy(pr => pr.Name);
var completeParts = category.CategoryChildren();
var showCommon = commonProducts.Any();
var showComplete = completeParts.Any();
var publicDocs = category.Assets.Where(d => !d.Metadata.ContainsKey("isPublic") || bool.Parse(d.Metadata["isPublic"].ToString()));
var partDocumentation = publicDocs.Where(d => d.Metadata.ContainsKey("manualType")
&& (d.Metadata["manualType"].ToString().Equals("parts manual",StringComparison.OrdinalIgnoreCase)
|| d.Metadata["manualType"].ToString().Equals("callout drawing",StringComparison.OrdinalIgnoreCase))).OrderBy(doc => doc.Name);
var listings = publicDocs.Where(d => d.Metadata.ContainsKey("manualType") && d.Metadata["manualType"].ToString().Equals("Superseded Parts Listing",StringComparison.OrdinalIgnoreCase)).OrderBy(doc => doc.Name);
var breadcrumbPages = "5399ada1daf73a26740bf60b|Low-CO EFI Gasoline Generators|low-coefigasolinegenerators.htm,5399ada1daf73a26740bf60c|Carbureted Gasoline Generators|carburetedgasolinegenerators.htm,5399ada1daf73a26740bf60d|Electronic Diesel Generators|electronicdieselgenerators.htm,5399ada1daf73a26740bf60e|Diesel Generators|traditionaldieselgenerators.htm,5399ada1daf73a26740bf60f|Westerbeke Engines|westerbekeengines.htm,5399ada1daf73a26740bf610|Climate Control|climatecontrol.htm,5399ada1daf73a26740bf611|Gasoline Engines|westerbekeengines.htm,5399ada1daf73a26740bf612|Industrial Generators|industrialgenerators.htm,5399ada1daf73a26740bf613|Sound Guards|soundguards.htm,5399ada1daf73a26740bf614|Universal Engines|universalengines.htm,5399ada1daf73a26740bf615|Westerbeke Engines|westerbekeengines.htm".Split(',').ToList();
var parentPage = category.Path[1].ToString().ToLowerInvariant();
var breadCrumb = breadcrumbPages.FirstOrDefault(x => x.Contains(parentPage));
var landingPage = breadCrumb.Split('|')[2];
var landingPageName = breadCrumb.Split('|')[1];
}
- Home
- @landingPageName
- @category.Name
- View Parts
Buy and View Parts Below : Click each image for a larger view and detailed list of the parts for that section. If images do not appear under a "Complete Parts Lists" heading, please scroll down to access the parts related information available for this model.
@if(showCommon)
{
}
@if(showComplete)
{
Complete Parts Lists
@foreach(var cat in completeParts)
{
if (cat.MainPhotoPath == null)
{
cat.MainPhotoPath = "";
}
}
}
Download Parts Documentation
@if(partDocumentation.Any()){
Document Name |
Publication Date |
}
@foreach(var doc in partDocumentation)
{
var pubDate = doc.Metadata.ContainsKey("PublicationDate") ? DateTime.Parse(doc.Metadata["PublicationDate"].ToString()).ToShortDateString() : "";
@(doc.DocumentTitle != null ? doc.DocumentTitle : doc.FullName) |
@pubDate |
}
@if (!partDocumentation.Any())
{
No matching records found |
}
Superseded Parts List
@if(listings.Any()){
Document Name |
Publication Date |
}
@foreach(var doc in listings)
{
var pubDate = doc.Metadata.ContainsKey("PublicationDate") ? DateTime.Parse(doc.Metadata["PublicationDate"].ToString()).ToShortDateString() : "";
@(doc.DocumentTitle != null ? doc.DocumentTitle : doc.FullName) |
@pubDate |
}
@if (!listings.Any())
{
No matching records found |
}
------------- END -----------
The generated source code is:
------------- START -----------
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
//
//------------------------------------------------------------------------------
namespace CompiledRazorTemplates.Dynamic {
using System;
using System.Collections.Generic;
using System.Linq;
using Emanager.Razor;
using Emanager.Utilities;
using Emanager.Data.Abstractions.Ecommerce.Model;
using Emanager.Data.Abstractions;
public class RazorEngine_743a27e1e7034290b53cd3a665004262 : Emanager.Razor.RazorBase<><>
>> {
public RazorEngine_743a27e1e7034290b53cd3a665004262(Emanager.Data.IDependencyResolver resolver, System.Func loadWebsite) :
base(resolver, loadWebsite) {
}
public override void Execute() {
var category = @Model.Model;
var products = category.Products;
var commonProducts = products.Where(p => p.Attributes.Any(a => a.Key.Equals("Commonparts", StringComparison.OrdinalIgnoreCase))).OrderBy(pr => pr.Name);
var completeParts = category.CategoryChildren();
var showCommon = commonProducts.Any();
var showComplete = completeParts.Any();
var publicDocs = category.Assets.Where(d => !d.Metadata.ContainsKey("isPublic") || bool.Parse(d.Metadata["isPublic"].ToString()));
var partDocumentation = publicDocs.Where(d => d.Metadata.ContainsKey("manualType")
&& (d.Metadata["manualType"].ToString().Equals("parts manual",StringComparison.OrdinalIgnoreCase)
|| d.Metadata["manualType"].ToString().Equals("callout drawing",StringComparison.OrdinalIgnoreCase))).OrderBy(doc => doc.Name);
var listings = publicDocs.Where(d => d.Metadata.ContainsKey("manualType") && d.Metadata["manualType"].ToString().Equals("Superseded Parts Listing",StringComparison.OrdinalIgnoreCase)).OrderBy(doc => doc.Name);
var breadcrumbPages = "5399ada1daf73a26740bf60b|Low-CO EFI Gasoline Generators|low-coefigasolinegenerators.htm,5399ada1daf73a26740bf60c|Carbureted Gasoline Generators|carburetedgasolinegenerators.htm,5399ada1daf73a26740bf60d|Electronic Diesel Generators|electronicdieselgenerators.htm,5399ada1daf73a26740bf60e|Diesel Generators|traditionaldieselgenerators.htm,5399ada1daf73a26740bf60f|Westerbeke Engines|westerbekeengines.htm,5399ada1daf73a26740bf610|Climate Control|climatecontrol.htm,5399ada1daf73a26740bf611|Gasoline Engines|westerbekeengines.htm,5399ada1daf73a26740bf612|Industrial Generators|industrialgenerators.htm,5399ada1daf73a26740bf613|Sound Guards|soundguards.htm,5399ada1daf73a26740bf614|Universal Engines|universalengines.htm,5399ada1daf73a26740bf615|Westerbeke Engines|westerbekeengines.htm".Split(',').ToList();
var parentPage = category.Path[1].ToString().ToLowerInvariant();
var breadCrumb = breadcrumbPages.FirstOrDefault(x => x.Contains(parentPage));
var landingPage = breadCrumb.Split('|')[2];
var landingPageName = breadCrumb.Split('|')[1];
WriteLiteral("\n
\n \n - (ResolveUrl("~/index.htm")
, 2159), false)
);
WriteLiteral(">Home
\n - (ResolveUrl("~/")
, 2211), false)
, Tuple.Create(Tuple.Create("", 2213), Tuple.Create(landingPage
, 2213), false)
);
WriteLiteral(">");
Write(landingPageName);
WriteLiteral("
\n - (category.Name.SanitizeFileName()
, 2288), false)
, Tuple.Create(Tuple.Create("", 2321), Tuple.Create("/", 2321), true)
, Tuple.Create(Tuple.Create("", 2322), Tuple.Create(category.Id
, 2322), false)
);
WriteLiteral(">");
Write(category.Name);
WriteLiteral("
\n - View Parts
Buy and View Parts Below : Click each image for a larger view and detailed list of the parts for that section. If images do not appear under a ""Complete Parts Lists"" heading, please scroll down to access the parts related information available for this model.
");
if(showCommon)
{
WriteLiteral("\t \t\t\n\t
Common Maintenance Parts
\n");
foreach(var product in commonProducts)
{
WriteLiteral("\t \t
(product.Name.SanitizeFileName()
, 2933), false)
, Tuple.Create(Tuple.Create("", 2965), Tuple.Create("/", 2965), true)
, Tuple.Create(Tuple.Create("", 2966), Tuple.Create(product.SKU
, 2966), false)
);
WriteLiteral(">");
Write(product.SKU);
WriteLiteral(" - ");
Write(product.Name);
WriteLiteral("\n");
}
WriteLiteral("\t
\n");
}
WriteLiteral(" \n");
if(showComplete)
{
WriteLiteral("\t
\n\t
Complete Parts Lists
\n");
foreach(var cat in completeParts)
{
if (cat.MainPhotoPath == null)
{
cat.MainPhotoPath = "";
}
WriteLiteral("\t\t
\n\t\t
(cat.Name.SanitizeFileName()
, 3494), false)
, Tuple.Create(Tuple.Create("", 3522), Tuple.Create("/", 3522), true)
, Tuple.Create(Tuple.Create("", 3523), Tuple.Create(cat.Id
, 3523), false)
);
WriteLiteral("> \n");
WriteLiteral(" ");
Write(Html.CategoryImage(cat, new { @width = "119", @height="83", @thumbnail="119x83"}));
WriteLiteral(" (cat.Name.SanitizeFileName()
, 3656), false)
, Tuple.Create(Tuple.Create("", 3684), Tuple.Create("/", 3684), true)
, Tuple.Create(Tuple.Create("", 3685), Tuple.Create(cat.Id
, 3685), false)
);
WriteLiteral(">");
Write(cat.Name);
WriteLiteral("\n\t\t
\n\t\t
\n");
}
WriteLiteral("\t \n");
}
WriteLiteral(" \n \n Download Parts Documentation\n
\n");
if(partDocumentation.Any()){
WriteLiteral(" \n\n \n Document Name\n | Publication Date\n |
\n \n");
}
WriteLiteral(" \n");
foreach(var doc in partDocumentation)
{
var pubDate = doc.Metadata.ContainsKey("PublicationDate") ? DateTime.Parse(doc.Metadata["PublicationDate"].ToString()).ToShortDateString() : "";
WriteLiteral(" \n (ResolveUrl("~/")
, 4671), false)
, Tuple.Create(Tuple.Create("", 4673), Tuple.Create(doc.FullName
, 4673), false)
);
WriteLiteral(">");
Write(doc.DocumentTitle != null ? doc.DocumentTitle : doc.FullName);
WriteLiteral("\n ");
Write(pubDate);
WriteLiteral("\n | |
\n");
}
WriteLiteral(" ");
if (!partDocumentation.Any())
{
WriteLiteral(" \n No matching records found\n |
\n");
}
WriteLiteral(" \n \n Superseded Parts List\n
\n");
if(listings.Any()){
WriteLiteral(" \n\n \n Document Name\n | Publication Date\n |
\n \n");
}
WriteLiteral(" \n");
foreach(var doc in listings)
{
var pubDate = doc.Metadata.ContainsKey("PublicationDate") ? DateTime.Parse(doc.Metadata["PublicationDate"].ToString()).ToShortDateString() : "";
WriteLiteral(" \n (ResolveUrl("~/")
, 5792), false)
, Tuple.Create(Tuple.Create("", 5794), Tuple.Create(doc.FullName
, 5794), false)
);
WriteLiteral(">");
Write(doc.DocumentTitle != null ? doc.DocumentTitle : doc.FullName);
WriteLiteral("\n ");
Write(pubDate);
WriteLiteral("\n | |
\n");
}
WriteLiteral(" ");
if (!listings.Any())
{
WriteLiteral(" \n No matching records found\n |
\n");
}
WriteLiteral(" \n \n\n \n \n \n
\n
\n (category.Name.SanitizeFileName()
, 6413), false)
, Tuple.Create(Tuple.Create("", 6446), Tuple.Create("/", 6446), true)
, Tuple.Create(Tuple.Create("", 6447), Tuple.Create(category.Id
, 6447), false)
);
WriteLiteral(" class=\"btn btn-info\"");
WriteLiteral(">Product Overview (category.Name.SanitizeFileName()
, 6521), false)
, Tuple.Create(Tuple.Create("", 6554), Tuple.Create("/", 6554), true)
, Tuple.Create(Tuple.Create("", 6555), Tuple.Create(category.Id
, 6555), false)
);
WriteLiteral(" class=\"btn btn-info\"");
WriteLiteral(">Technical Documents (category.Name.SanitizeFileName()
, 6636), false)
, Tuple.Create(Tuple.Create("", 6669), Tuple.Create("/", 6669), true)
, Tuple.Create(Tuple.Create("", 6670), Tuple.Create(category.Id
, 6670), false)
);
WriteLiteral(" class=\"btn btn-info active\"");
WriteLiteral(">View Parts \n \n
(ResolveUrl("~/quickorder.htm")
, 6797), false)
);
WriteLiteral(">Express
\n Parts Order
\n \n " +
"
\n
(ResolveUrl("~/documentlibrary.htm")
, 6939), false)
);
WriteLiteral(">Document
\n Library
\n \n <" +="" "div");="" WriteLiteral("="" class="\" well\"");"="" WriteLiteral("="">\n
\n \n " +
"">
\n");
}
}
}
------------- END -----------
List of loaded Assemblies:
C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscorlib.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_64\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\b7da2111\00a4a453_0208d001\WebActivatorEx.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\c79cdca7\002494ff_7c6acd01\Microsoft.Web.Infrastructure.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\f2568bad\00e06841_91f9cf01\Castle.Core.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\60cd9706\c0645ad4_5c87d001\CsQuery.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\14a1c61a\a7506dd4_5c87d001\DHTMLX.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\98aacb63\4328651b_8fb6d101\Emanager.Api.Client.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\8466dd8f\8584db1e_8fb6d101\Emanager.Client.MTABenefits.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\8dabb8b2\a4cd2125_8fb6d101\Emanager.Client.Rideshare.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\c3373dc6\7cb09221_8fb6d101\Emanager.Client.Westerbeke.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\a33cda43\c696c5a1_b1b5d101\Emanager.Data.Abstractions.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\9442136f\2ac037f2_3a85d101\Emanager.Data.Abstractions.Server.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\cd7850a0\fab663a1_b1b5d101\Emanager.Data.Delta.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\dc652f2f\bd0fbca0_b1b5d101\Emanager.Data.ValueTypes.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\8fa9a7e4\fb3e9b8e_9cb6d101\Emanager.EditorFrontEnd.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\ab331284\f68da9a2_b1b5d101\Emanager.NinjectBindings.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\380825fc\02bf0a1c_8fb6d101\Emanager.Razor.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\1f284c93\7ef34442_edb4d101\Emanager.Scripting.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\183ff719\ad6e4482_f7b4d101\Emanager.Security.Abstractions.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\272b5214\52bd5a64_b2b5d101\Emanager.Shell.Abstractions.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\1906d141\face468e_9cb6d101\Emanager.Shell.NinjectBindings.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\d707b39f\b43ac89e_b1b5d101\Emanager.Utilities.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\90e429ed\febc2ba2_b1b5d101\Emanager.Utilities.Ecommerce.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\75b377ef\4fa523a2_b1b5d101\Emanager.Utilities.Ninject.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\b1ba6a5f\5ee5d1a0_b1b5d101\Emanager.Utilities.Webforms.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\af3168cb\95b7fa1b_8fb6d101\Emanager.Web.Abstractions.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\a18a63df\376d3a1e_8fb6d101\Emanager.Web.Base.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\defa6ec0\c5a5bb20_8fb6d101\Emanager.Web.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\9aebb2b5\3976158e_9cb6d101\Emanager.Web.Internal.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\77af895b\7620da2f_8fb6d101\Emanager.Web.LegacyEcommerce.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\daef552b\7ed4c43c_bc0dd101\FileHelpers.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\c77bd30e\a9306b45_cf3dd101\HtmlAgilityPack.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\6455ee0e\fffabc01_3b34d101\Magnum.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\9a085ac9\d603a3ae_2534d101\MassTransit.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\a145e0ea\48efbb10_2110d101\Microsoft.CodeAnalysis.CSharp.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\d91bc38c\16a21b0c_2110d101\Microsoft.CodeAnalysis.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\b42b9959\738e1616_2110d101\Microsoft.CodeAnalysis.Scripting.CSharp.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\48907e45\8d82a414_2110d101\Microsoft.CodeAnalysis.Scripting.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\6bb4c860\6d7c458a_2634d101\Microsoft.Diagnostics.Tracing.TraceEvent.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\6dc2f2f3\ff9d64d4_5c87d001\Microsoft.IO.RecyclableMemoryStream.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\62205219\005ba4fc_299acf01\Microsoft.Practices.EnterpriseLibrary.SemanticLogging.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\ae7feb27\b0112057_bf0dd101\NewId.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\5d0e4bc5\da5196b9_c70dd101\Newtonsoft.Json.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\5995169f\7791c77a_df0dd101\Ninject.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\a9bc7026\005429b7_4645cf01\Ninject.Extensions.Conventions.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\6ca03221\00d6c60e_4570cf01\Ninject.Extensions.Factory.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\ca3e234f\00f282e2_48d4cf01\Ninject.Web.Common.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\0c6e6eb0\00d83dc3_7463cf01\Ninject.Web.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\a0b24366\79a2e8cf_cb0dd101\PayPalCoreSDK.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\a3d41d3f\b57901a4_cd0dd101\PayPalMerchantSDK.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\3408d039\8fbac072_2634d101\RazorEngine.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Collections.Concurrent\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Collections.Concurrent.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Collections\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Collections.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\9b396d6e\5c721651_2834d101\System.Collections.Immutable.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.Annotations\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ComponentModel.Annotations.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.EventBasedAsync\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ComponentModel.EventBasedAsync.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Diagnostics.Debug\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Diagnostics.Debug.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Diagnostics.Tracing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Diagnostics.Tracing.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Dynamic.Runtime\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Dynamic.Runtime.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Globalization\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Globalization.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IO\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.IO.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Linq.Expressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Linq.Expressions.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\f7c72d6b\97eb2756_a0f5d001\System.Net.Http.Formatting.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.NetworkInformation\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.NetworkInformation.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Primitives\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Primitives.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Requests\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Requests.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ObjectModel\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ObjectModel.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\ea6bc89a\2975ac42_2834d101\System.Reflection.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\ef2f1e79\f45a0652_2834d101\System.Reflection.Metadata.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Extensions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Extensions.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.InteropServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.InteropServices.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Primitives\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Primitives.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization.Xml\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Xml.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.ServiceModel.Http.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Text.Encoding\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Text.Encoding.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Text.Encoding.Extensions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Text.Encoding.Extensions.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Text.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Text.RegularExpressions.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Threading\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Threading.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Threading.Tasks\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Threading.Tasks.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\1581955c\fac649d9_9ff5d001\System.Web.Http.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\assembly\dl3\63449da1\00c46126_d93ad001\System.Web.Razor.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.ReaderWriter\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Xml.ReaderWriter.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.XDocument\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Xml.XDocument.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.XmlSerializer\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Xml.XmlSerializer.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Resources.ResourceManager\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Resources.ResourceManager.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http.WebRequest\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.WebRequest.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_global.asax.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Browsers.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_64\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Dynamic\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Dynamic.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Mobile\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_64\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.0__31bf3856ad364e35\System.WorkflowServices.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_overview.htm.cdcab7d2.tutcbahm.dll
Loaded Assembly: C:\Windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_about.htm.cdcab7d2.-turgnpe.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_carburetedgasolinegenerators.htm.cdcab7d2.ho677kzj.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_checkout.htm.cdcab7d2.xsclix5e.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_contact.htm.cdcab7d2.bm5nodkx.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_documentlibrary.htm.cdcab7d2.onkq7snf.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_electronicdieselgenerators.htm.cdcab7d2.kschi41i.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_electronicgeneratorslibrary.htm.cdcab7d2.r60pjgg7.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_gallery.htm.cdcab7d2.dtxmlqyb.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_industrialgenerators.htm.cdcab7d2.tx-1mtei.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_leadership.htm.cdcab7d2.jhdkyx-y.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_lowcoinformation.htm.cdcab7d2.kawfsyoa.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_oldmodelliterature.htm.cdcab7d2.-9vtqyxm.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_overview.htm.cdcab7d2.lcax1qhb.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_partssearch.htm.cdcab7d2.fspvrsjj.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_productrecalls.htm.cdcab7d2.ykwpulun.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_quickreferenceinfo.htm.cdcab7d2.osmlq1kb.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_sitemap.htm.cdcab7d2.9cfiovct.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_termsandconditions.htm.cdcab7d2.xsp1bwws.dll
Loaded Assembly: D:\ASPNET_Temp\root\e53ab0d9\bfc14b54\App_Web_viewparts.htm.cdcab7d2.yiwkrhux.dllSystem.Tuple`2[System.Type,RazorEngine.Compilation.CompilationData] CompileTypeImpl(RazorEngine.Compilation.TypeContext) at RazorEngine.Compilation.DirectCompilerServiceBase.CompileTypeImpl(TypeContext context)
at RazorEngine.Compilation.DirectCompilerServiceBase.CompileType_Windows(TypeContext context)
at RazorEngine.Compilation.DirectCompilerServiceBase.CompileType(TypeContext context)
at RazorEngine.Templating.RazorEngineCore.Compile(ITemplateKey key, Type modelType)
at RazorEngine.Templating.RazorEngineService.CompileAndCacheInternal(ITemplateKey key, Type modelType)
at RazorEngine.Templating.RazorEngineService.GetCompiledTemplate(ITemplateKey key, Type modelType, Boolean compileOnCacheMiss)
at RazorEngine.Templating.RazorEngineService.RunCompile(ITemplateKey key, TextWriter writer, Type modelType, Object model, DynamicViewBag viewBag)
at Emanager.Web.UI.ControlBase.RenderRazorInternal(String uniqueId, HtmlTextWriter writer) in C:\Users\adavanzo\Desktop\src\Emanager TFSGIT\Emanager.Shell\Emanager.Web.Base\UI\ControlBase.cs:line 274
at Emanager.Web.UI.ControlBase.RenderRazor(HtmlTextWriter writer) in C:\Users\adavanzo\Desktop\src\Emanager TFSGIT\Emanager.Shell\Emanager.Web.Base\UI\ControlBase.cs:line 241