4 changed files with 164 additions and 0 deletions
@ -0,0 +1,79 @@ |
|||||||
|
<Template |
||||||
|
originator="Matt Ward" |
||||||
|
created="04/06/2011" |
||||||
|
lastModified="17/06/2011"> |
||||||
|
|
||||||
|
<!-- Template Header --> |
||||||
|
<TemplateConfiguration> |
||||||
|
<Name>Empty ASP.NET MVC Application</Name> |
||||||
|
<Category>C#</Category> |
||||||
|
<Subcategory>ASP.NET</Subcategory> |
||||||
|
<Icon>C#.Project.Form</Icon> |
||||||
|
<Description>Empty ASP.NET MVC Application</Description> |
||||||
|
<SupportedTargetFrameworks>v4.0</SupportedTargetFrameworks> |
||||||
|
</TemplateConfiguration> |
||||||
|
|
||||||
|
<Project language="C#"> |
||||||
|
<ProjectItems> |
||||||
|
<Reference Include="System" /> |
||||||
|
<Reference Include="System.Web" /> |
||||||
|
<Reference Include="System.Web.Mvc" /> |
||||||
|
<Reference Include="System.Xml" /> |
||||||
|
</ProjectItems> |
||||||
|
|
||||||
|
<PropertyGroup escapeValue="False"> |
||||||
|
<OutputType>Library</OutputType> |
||||||
|
<ProjectTypeGuids>{E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> |
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<PropertyGroup configuration="Debug"> |
||||||
|
<OutputPath>bin\</OutputPath> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<PropertyGroup configuration="Release"> |
||||||
|
<OutputPath>bin\</OutputPath> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<Files> |
||||||
|
<File name="Properties\AssemblyInfo.cs" src="DefaultAssemblyInfo.cs" /> |
||||||
|
<File name="Global.asax"> |
||||||
|
<![CDATA[<%@ Application Codebehind="Global.asax.cs" Inherits="${StandardNamespace}.MvcApplication" Language="C#" %> |
||||||
|
]]> |
||||||
|
</File> |
||||||
|
<File name="Global.asax.cs" DependentUpon="Global.asax"> |
||||||
|
<![CDATA[${StandardHeader.C#} |
||||||
|
using System.Web; |
||||||
|
using System.Web.Mvc; |
||||||
|
using System.Web.Routing; |
||||||
|
|
||||||
|
namespace ${StandardNamespace} |
||||||
|
{ |
||||||
|
public class MvcApplication : HttpApplication |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
]]> |
||||||
|
</File> |
||||||
|
<File name="web.config"> |
||||||
|
<![CDATA[<configuration> |
||||||
|
<system.web> |
||||||
|
<compilation debug="true" targetFramework="4.0"> |
||||||
|
<assemblies> |
||||||
|
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> |
||||||
|
</assemblies> |
||||||
|
</compilation> |
||||||
|
|
||||||
|
<pages> |
||||||
|
<namespaces> |
||||||
|
<add namespace="System.Web.Mvc"/> |
||||||
|
<add namespace="System.Web.Mvc.Html"/> |
||||||
|
</namespaces> |
||||||
|
</pages> |
||||||
|
</system.web> |
||||||
|
</configuration> |
||||||
|
]]> |
||||||
|
</File> |
||||||
|
</Files> |
||||||
|
</Project> |
||||||
|
</Template> |
@ -0,0 +1,77 @@ |
|||||||
|
<Template |
||||||
|
originator="Matt Ward" |
||||||
|
created="04/06/2011" |
||||||
|
lastModified="17/06/2011"> |
||||||
|
|
||||||
|
<!-- Template Header --> |
||||||
|
<TemplateConfiguration> |
||||||
|
<Name>Empty ASP.NET MVC Application</Name> |
||||||
|
<Category>VB</Category> |
||||||
|
<Subcategory>ASP.NET</Subcategory> |
||||||
|
<Icon>VBNet.Project.Form</Icon> |
||||||
|
<Description>Empty ASP.NET MVC Application</Description> |
||||||
|
<SupportedTargetFrameworks>v4.0</SupportedTargetFrameworks> |
||||||
|
</TemplateConfiguration> |
||||||
|
|
||||||
|
<Project language="VBNet"> |
||||||
|
<ProjectItems> |
||||||
|
<Reference Include="System" /> |
||||||
|
<Reference Include="System.Web" /> |
||||||
|
<Reference Include="System.Web.Mvc" /> |
||||||
|
<Reference Include="System.Xml" /> |
||||||
|
</ProjectItems> |
||||||
|
|
||||||
|
<PropertyGroup escapeValue="False"> |
||||||
|
<OutputType>Library</OutputType> |
||||||
|
<ProjectTypeGuids>{E53F8FEA-EAE0-44A6-8774-FFD645390401};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> |
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<PropertyGroup configuration="Debug"> |
||||||
|
<OutputPath>bin\</OutputPath> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<PropertyGroup configuration="Release"> |
||||||
|
<OutputPath>bin\</OutputPath> |
||||||
|
</PropertyGroup> |
||||||
|
|
||||||
|
<Files> |
||||||
|
<File name="Properties\AssemblyInfo.vb" src="DefaultAssemblyInfo.vb" /> |
||||||
|
<File name="Global.asax"> |
||||||
|
<![CDATA[<%@ Application Codebehind="Global.asax.vb" Inherits="${StandardNamespace}.MvcApplication" Language="VB" %> |
||||||
|
]]> |
||||||
|
</File> |
||||||
|
<File name="Global.asax.vb" DependentUpon="Global.asax"> |
||||||
|
<![CDATA[${StandardHeader.VBNET} |
||||||
|
Imports System.Web |
||||||
|
Imports System.Web.Mvc |
||||||
|
Imports System.Web.Routing |
||||||
|
|
||||||
|
Public Class MvcApplication |
||||||
|
Inherits HttpApplication |
||||||
|
|
||||||
|
End Class |
||||||
|
]]> |
||||||
|
</File> |
||||||
|
<File name="web.config"> |
||||||
|
<![CDATA[<configuration> |
||||||
|
<system.web> |
||||||
|
<compilation debug="true" targetFramework="4.0"> |
||||||
|
<assemblies> |
||||||
|
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/> |
||||||
|
</assemblies> |
||||||
|
</compilation> |
||||||
|
|
||||||
|
<pages> |
||||||
|
<namespaces> |
||||||
|
<add namespace="System.Web.Mvc"/> |
||||||
|
<add namespace="System.Web.Mvc.Html"/> |
||||||
|
</namespaces> |
||||||
|
</pages> |
||||||
|
</system.web> |
||||||
|
</configuration> |
||||||
|
]]> |
||||||
|
</File> |
||||||
|
</Files> |
||||||
|
</Project> |
||||||
|
</Template> |
Loading…
Reference in new issue