~ubuntu-branches/ubuntu/natty/monodevelop/natty

« back to all changes in this revision

Viewing changes to src/addins/AspNetAddIn/Templates/MasterPage-CodeBehindNonPartial.xft.xml

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Ebner
  • Date: 2008-03-29 23:36:33 UTC
  • mto: (1.5.1 sid)
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: james.westby@ubuntu.com-20080329233633-l550uuwvfh1e68at
Tags: upstream-1.0+dfsg
ImportĀ upstreamĀ versionĀ 1.0+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
        <TemplateConfiguration>
8
8
                <_Name>MasterPage with CodeBehind</_Name>
9
9
                <Icon>md-html-file-icon</Icon>
10
 
                <Category>ASP.NET</Category>
 
10
                <_Category>ASP.NET</_Category>
11
11
                <LanguageName>*</LanguageName>
12
12
                <_Description>Creates an ASP.NET MasterPage with a CodeBehind class.</_Description>
13
13
                <ProjectType>AspNetApp</ProjectType>
22
22
        <TemplateFiles>
23
23
                <AspNetFile name="${Name}.master" BuildAction="FileCopy">
24
24
                        <FileText>
25
 
                                <![CDATA[<%@ Master Language="${Language}" Inherits="${Namespace}.${Name}" %>
 
25
                                <![CDATA[<%@ Master Language="${AspNetLanguage}" Inherits="${Namespace}.${Name}" %>
26
26
${Doctype}
27
27
<html>
28
28
<head>
44
44
using System.Web;
45
45
using System.Web.UI;
46
46
namespace ${Namespace} {
47
 
        public class ${Name} : System.Web.UI.MasterPage 
 
47
        public class ${EscapedIdentifier} : System.Web.UI.MasterPage 
48
48
        {
49
49
        }
50
50
}