~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

« back to all changes in this revision

Viewing changes to src/addins/AspNet/MonoDevelop.AspNet.Mvc/Templates/Project.xpt.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2013-05-12 09:46:03 UTC
  • mto: This revision was merged to the branch mainline in revision 29.
  • Revision ID: package-import@ubuntu.com-20130512094603-mad323bzcxvmcam0
Tags: upstream-4.0.5+dfsg
ImportĀ upstreamĀ versionĀ 4.0.5+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
                        <StartupProject>${ProjectName}</StartupProject>
23
23
                </Options>
24
24
                
25
 
                <Project name = "${ProjectName}" directory = "." type = "AspNetMvc">
 
25
                <Project name = "${ProjectName}" directory = "." type = "AspNetMvc2">
26
26
                        <Options TargetFrameworkVersion = "4.0" />
27
27
                        <References>
28
28
                                <Reference type="Package" refto="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
41
41
                        <Files>
42
42
                                <Directory name="Content" />
43
43
                                <Directory name="Controllers">
44
 
                                        <File name="HomeController.cs"><![CDATA[using System;
45
 
using System.Collections.Generic;
46
 
using System.Linq;
47
 
using System.Web;
48
 
using System.Web.Mvc;
49
 
using System.Web.Mvc.Ajax;
50
 
 
51
 
namespace Controllers
52
 
{
53
 
        
54
 
        public class HomeController : Controller
55
 
        {
56
 
                public ActionResult Index ()
57
 
                {
58
 
                        ViewData["Message"] = "Welcome to ASP.NET MVC on Mono!";
59
 
                        return View ();
60
 
                }
61
 
        }
62
 
}
63
 
]]>
64
 
                                        </File>
 
44
                                        <File name="HomeController.cs" src="Common/HomeController.cs" />
65
45
                                </Directory>
66
46
                                <Directory name="Models" />
67
47
                                <Directory name="Scripts" />