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

« back to all changes in this revision

Viewing changes to src/addins/AspNetAddIn/Templates/WebControl-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:
6
6
        <!-- Template Header -->
7
7
        <TemplateConfiguration>
8
8
                <_Name>User Control with CodeBehind</_Name>
9
 
                <Category>ASP.NET</Category>
 
9
                <_Category>ASP.NET</_Category>
10
10
                <Icon>md-html-file-icon</Icon>
11
11
                <LanguageName>*</LanguageName>
12
12
                <ProjectType>AspNetApp</ProjectType>
21
21
        <TemplateFiles>
22
22
                <AspNetFile DefaultExtension=".ascx" name="${Name}.ascx" BuildAction="FileCopy">
23
23
                        <FileText>
24
 
<![CDATA[<%@ Control Language="${Language}" Inherits="${Namespace}.${Name}" %>]]>
 
24
<![CDATA[<%@ Control Language="${AspNetLanguage}" Inherits="${Namespace}.${Name}" %>]]>
25
25
                        </FileText>
26
26
                </AspNetFile>
27
27
                
32
32
 
33
33
namespace ${Namespace} {
34
34
 
35
 
        public partial class ${Name} : System.Web.UI.UserControl
 
35
        public partial class ${EscapedIdentifier} : System.Web.UI.UserControl
36
36
        {
37
37
        }
38
38
}]]>