this is my first little bash with umbraco and i have the source code, however i get strange build errors:
Error 11 Character '{', hexadecimal value 0x7b is illegal in an XML name. D:\Chrome Downloads\umbraco-4.7.2.-source\umbraco_a7dae59a1e55\umbraco\presentation\umbraco\templateControls\InlineXslt.xsltTemplate 7 45 umbraco.presentation
this in-turn causes problems with:
umbraco.presentation.templateControls.ItemRenderer:
// add the XSLT expression into the full XSLT document, together with the needed parameters
string xslt = string.Format(Resources.InlineXsltTemplate, xpathExpression, disableEscaping ? "yes" : "no", namespaceList, namespaceDeclaractions);
this class wont build into the project, diue the the xslt template being invalid.
I am sure i am just missing some kind of references or something here, but i have sorted quite a few build erros so far, but this one has me really stumped.thanks
Error143The type or namespace name 'InlineXslt' does not exist in the namespace 'Resources' (are you missing an assembly reference?)D:\Chrome Downloads\umbraco-4.7.2.-source\umbraco_a7dae59a1e55\umbraco\presentation\umbraco\templateControls\ItemRenderer.cs23655umbraco.presentation
umbraco 4.7.2 umbraco.presentation build error inlinexslt
Hi.
this is my first little bash with umbraco and i have the source code, however i get strange build errors:
Error 11 Character '{', hexadecimal value 0x7b is illegal in an XML name. D:\Chrome Downloads\umbraco-4.7.2.-source\umbraco_a7dae59a1e55\umbraco\presentation\umbraco\templateControls\InlineXslt.xsltTemplate 7 45 umbraco.presentation
this in-turn causes problems with:
umbraco.presentation.templateControls.ItemRenderer:
// add the XSLT expression into the full XSLT document, together with the needed parameters string xslt = string.Format(Resources.InlineXsltTemplate, xpathExpression, disableEscaping ? "yes" : "no", namespaceList, namespaceDeclaractions);
this class wont build into the project, diue the the xslt template being invalid. I am sure i am just missing some kind of references or something here, but i have sorted quite a few build erros so far, but this one has me really stumped.thanks
the part of string.Format(Resources.InlineXsltTemplate should read string.Format(Resources.InlineXslt
unable to edit the post, this is not part of the error.
matching error, the root problem:
Error143The type or namespace name 'InlineXslt' does not exist in the namespace 'Resources' (are you missing an assembly reference?)D:\Chrome Downloads\umbraco-4.7.2.-source\umbraco_a7dae59a1e55\umbraco\presentation\umbraco\templateControls\ItemRenderer.cs23655umbraco.presentation
okay fixed this: ItemRenderer should be in namespace umbraco.presentation.umbraco.templateControls
not umbraco.presentation.templateControls this then fixes all the references etc
is working on a reply...