#develop (short for SharpDevelop) is a free IDE for .NET programming languages.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

79 lines
2.1 KiB

<Template
originator="Matt Ward"
created="04/06/2011"
lastModified="17/06/2011">
<!-- Template Header -->
<TemplateConfiguration>
<Name>Empty MVC Application</Name>
<Category>C#</Category>
<Subcategory>ASP.NET MVC</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>