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

« back to all changes in this revision

Viewing changes to src/addins/AspNet/MonoDevelop.AspNet.Mvc/Templates/ProjectMvc3.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:
23
23
                        <StartupProject>${ProjectName}</StartupProject>
24
24
                </Options>
25
25
 
26
 
                <Project name = "${ProjectName}" directory = "." type = "AspNetMvc">
 
26
                <Project name = "${ProjectName}" directory = "." type = "AspNetMvc3">
27
27
                        <Options TargetFrameworkVersion = "4.0" />
28
28
                        <References>
29
29
                                <Reference type="Package" refto="System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
40
40
                                <Reference type="Package" refto="System.Web.DynamicData, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
41
41
                                <Reference type="Package" refto="System.ComponentModel.DataAnnotations, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" SpecificVersion="false" />
42
42
                                <Reference type="Package" refto="System.Xml.Linq" />
 
43
                                <Reference type="Package" refto="Microsoft.CSharp, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
43
44
                        </References>
44
45
                        <Files>
45
46
                                <Directory name="Content" />
46
47
                                <Directory name="Controllers">
47
 
                                        <File name="HomeController.cs">
48
 
<![CDATA[using System;
49
 
using System.Collections.Generic;
50
 
using System.Linq;
51
 
using System.Web;
52
 
using System.Web.Mvc;
53
 
using System.Web.Mvc.Ajax;
54
 
 
55
 
namespace Controllers
56
 
{
57
 
        public class HomeController : Controller
58
 
        {
59
 
                public ActionResult Index ()
60
 
                {
61
 
                        ViewData["Message"] = "Welcome to ASP.NET MVC 3 on Mono!";
62
 
                        return View ();
63
 
                }
64
 
        }
65
 
}
66
 
]]>
67
 
                                        </File>
 
48
                                        <File name="HomeController.cs" src="Common/HomeController.cs" />
68
49
                                </Directory>
69
50
                                <Directory name="Models" />
70
51
                                <Directory name="Scripts" />