| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/lib/monodevelop/AddIns/MonoDevelop.AspNet.Mvc/Templates/ |
Upload File : |
<?xml version="1.0"?>
<Template originator="Michael Hutchinson"
created="2009/02/17"
lastModified="2009/02/17">
<!-- Template Header -->
<TemplateConfiguration>
<_Name>ASP.NET MVC Project</_Name>
<_Category>C#/ASP.NET</_Category>
<Icon>md-project-web</Icon>
<LanguageName>C#</LanguageName>
<_Description>Creates an ASP.NET MVC Web Project.</_Description>
</TemplateConfiguration>
<!-- Actions -->
<Actions>
</Actions>
<!-- Template Content -->
<Combine name = "${ProjectName}" directory = ".">
<Options>
<StartupProject>${ProjectName}</StartupProject>
</Options>
<Project name = "${ProjectName}" directory = "." type = "AspNetMvc">
<Options TargetFrameworkVersion = "3.5" />
<References>
<Reference type="Gac" refto="System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<Reference type="Gac" refto="System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<Reference type="Gac" refto="System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<Reference type="Gac" refto="System.Core" />
<Reference type="Gac" refto="System.Web.Services, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<Reference type="Gac" refto="System.Web.Routing, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" SpecificVersion="false" />
<Reference type="Gac" refto="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<Reference type="Gac" refto="System.Web.Abstractions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" SpecificVersion="false" />
<Reference type="Gac" refto="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" SpecificVersion="false" />
<Reference type="Gac" refto="System.Xml.Linq" />
</References>
<Files>
<Directory name="Content" />
<Directory name="Controllers">
<File name="HomeController.cs"><![CDATA[using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using System.Web.Mvc.Ajax;
namespace Controllers
{
[HandleError]
public class HomeController : Controller
{
public ActionResult Index ()
{
ViewData["Message"] = "Welcome to ASP.NET MVC on Mono!";
return View ();
}
}
}
]]>
</File>
</Directory>
<Directory name="Models" />
<Directory name="Scripts" />
<Directory name="Views">
<FileTemplateReference TemplateID="AspMvcWebConfigViews" name="Web.config" SuppressAutoOpen="true" />
<Directory name="Home">
<AspNetFile name="Index.aspx">
<FileText><![CDATA[<%@ Page Language="${AspNetLanguage}" Inherits="System.Web.Mvc.ViewPage" %>
${Doctype}
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<div>
<%= Html.Encode(ViewData["Message"]) %>
</div>
</body>
]]>
</FileText>
</AspNetFile>
</Directory>
</Directory>
<FileTemplateReference TemplateID="AspMvcWebConfigApp" name="Web.config" SuppressAutoOpen="true" />
<FileTemplateReference TemplateID="AspMvcGlobalAsax" name="Global.asax" SuppressAutoOpen="true" />
</Files>
</Project>
</Combine>
</Template>