Skip to content

Commit 16f4572

Browse files
Sample Application for .NET 3.5
git-svn-id: https://ndjango.googlecode.com/svn/NDjango/trunk@615 5ca2c0c4-756c-11de-8369-6b41a2a8383f
1 parent 31a10b2 commit 16f4572

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+36271
-12
lines changed

ASPMVCIntegration/ASPMVCIntegration35.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
55
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
6-
<ProductVersion>9.0.21022</ProductVersion>
6+
<ProductVersion>9.0.30729</ProductVersion>
77
<SchemaVersion>2.0</SchemaVersion>
88
<ProjectGuid>{F8D5E545-691B-4743-9177-3FF50CC67E74}</ProjectGuid>
99
<OutputType>Library</OutputType>
@@ -82,7 +82,7 @@
8282
<Compile Include="Properties\AssemblyInfo.cs" />
8383
</ItemGroup>
8484
<ItemGroup>
85-
<ProjectReference Include="..\NDjangoParser\NDjangoParser2008.fsproj">
85+
<ProjectReference Include="..\NDjangoParser\NDjangoParser35.fsproj">
8686
<Project>{B75384C4-C545-4511-A7FE-93D438B8AFA4}</Project>
8787
<Name>NDjangoParser2008</Name>
8888
</ProjectReference>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
<Project ToolsVersion="3.5" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<PropertyGroup>
3+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
4+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
5+
<ProductVersion>9.0.30729</ProductVersion>
6+
<SchemaVersion>2.0</SchemaVersion>
7+
<ProjectGuid>{18785BD9-8DEB-40D1-858A-59031EBB8ADA}</ProjectGuid>
8+
<ProjectTypeGuids>{F85E285D-A4E0-4152-9332-AB1D724D3325};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
9+
<OutputType>Library</OutputType>
10+
<AppDesignerFolder>Properties</AppDesignerFolder>
11+
<RootNamespace>ASPMVCSampleApplication35</RootNamespace>
12+
<AssemblyName>ASPMVCSampleApplication35</AssemblyName>
13+
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
14+
<MvcBuildViews>false</MvcBuildViews>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<DebugSymbols>true</DebugSymbols>
18+
<DebugType>full</DebugType>
19+
<Optimize>false</Optimize>
20+
<OutputPath>bin\</OutputPath>
21+
<DefineConstants>DEBUG;TRACE</DefineConstants>
22+
<ErrorReport>prompt</ErrorReport>
23+
<WarningLevel>4</WarningLevel>
24+
</PropertyGroup>
25+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
26+
<DebugType>pdbonly</DebugType>
27+
<Optimize>true</Optimize>
28+
<OutputPath>bin\</OutputPath>
29+
<DefineConstants>TRACE</DefineConstants>
30+
<ErrorReport>prompt</ErrorReport>
31+
<WarningLevel>4</WarningLevel>
32+
</PropertyGroup>
33+
<ItemGroup>
34+
<Reference Include="System" />
35+
<Reference Include="System.Data" />
36+
<Reference Include="System.ComponentModel.DataAnnotations">
37+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
38+
</Reference>
39+
<Reference Include="System.Core">
40+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
41+
</Reference>
42+
<Reference Include="System.Data.DataSetExtensions">
43+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
44+
</Reference>
45+
<Reference Include="System.Web.Mvc, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
46+
<SpecificVersion>False</SpecificVersion>
47+
<HintPath>..\..\..\..\..\Program Files (x86)\Microsoft ASP.NET\ASP.NET MVC 2\\Assemblies\System.Web.Mvc.dll</HintPath>
48+
</Reference>
49+
<Reference Include="System.Xml.Linq">
50+
<RequiredTargetFramework>3.5</RequiredTargetFramework>
51+
</Reference>
52+
<Reference Include="System.Drawing" />
53+
<Reference Include="System.Web" />
54+
<Reference Include="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
55+
<Reference Include="System.Web.Abstractions" />
56+
<Reference Include="System.Web.Routing" />
57+
<Reference Include="System.Xml" />
58+
<Reference Include="System.Configuration" />
59+
<Reference Include="System.Web.Services" />
60+
<Reference Include="System.EnterpriseServices" />
61+
<Reference Include="System.Web.Mobile" />
62+
</ItemGroup>
63+
<ItemGroup>
64+
<Compile Include="Controllers\AccountController.cs" />
65+
<Compile Include="Controllers\HomeController.cs" />
66+
<Compile Include="Global.asax.cs">
67+
<DependentUpon>Global.asax</DependentUpon>
68+
</Compile>
69+
<Compile Include="Models\AccountModels.cs" />
70+
<Compile Include="Properties\AssemblyInfo.cs" />
71+
</ItemGroup>
72+
<ItemGroup>
73+
<Content Include="Global.asax" />
74+
<Content Include="Web.config" />
75+
<Content Include="Content\Site.css" />
76+
<Content Include="Scripts\jquery-1.4.1.js" />
77+
<Content Include="Scripts\jquery-1.4.1.min.js" />
78+
<Content Include="Scripts\jquery-1.4.1-vsdoc.js" />
79+
<Content Include="Scripts\jquery-1.4.1.min-vsdoc.js" />
80+
<Content Include="Scripts\jquery.validate.js" />
81+
<Content Include="Scripts\jquery.validate.min.js" />
82+
<Content Include="Scripts\jquery.validate-vsdoc.js" />
83+
<Content Include="Scripts\jquery.validate.min-vsdoc.js" />
84+
<Content Include="Scripts\MicrosoftAjax.js" />
85+
<Content Include="Scripts\MicrosoftAjax.debug.js" />
86+
<Content Include="Scripts\MicrosoftMvcAjax.js" />
87+
<Content Include="Scripts\MicrosoftMvcAjax.debug.js" />
88+
<Content Include="Scripts\MicrosoftMvcValidation.js" />
89+
<Content Include="Scripts\MicrosoftMvcValidation.debug.js" />
90+
<Content Include="Views\Account\ChangePassword.aspx" />
91+
<Content Include="Views\Account\ChangePasswordSuccess.aspx" />
92+
<Content Include="Views\Account\LogOn.aspx" />
93+
<Content Include="Views\Account\Register.aspx" />
94+
<Content Include="Views\Home\About.aspx" />
95+
<Content Include="Views\Home\Index.aspx" />
96+
<Content Include="Views\Shared\Error.aspx" />
97+
<Content Include="Views\Shared\LogOnUserControl.ascx" />
98+
<Content Include="Views\Shared\Site.Master" />
99+
<Content Include="Views\Web.config" />
100+
</ItemGroup>
101+
<ItemGroup>
102+
<None Include="Views\Account\Register.django" />
103+
<None Include="Views\Home\Django.django" />
104+
<None Include="Views\Shared\Site.django" />
105+
</ItemGroup>
106+
<ItemGroup>
107+
<ProjectReference Include="..\ASPMVCIntegration\ASPMVCIntegration35.csproj">
108+
<Project>{F8D5E545-691B-4743-9177-3FF50CC67E74}</Project>
109+
<Name>ASPMVCIntegration35</Name>
110+
</ProjectReference>
111+
<ProjectReference Include="..\ASPMVCSampleLibrary\ASPMVCSampleLibrary35.csproj">
112+
<Project>{31DA6E9F-1CDC-48B7-B559-E60591DE8159}</Project>
113+
<Name>ASPMVCSampleLibrary35</Name>
114+
</ProjectReference>
115+
<ProjectReference Include="..\NDjangoParserFilters\NDjangoParserFilters35.csproj">
116+
<Project>{89DC9575-C706-4D0D-944A-79E5865FFE88}</Project>
117+
<Name>NDjangoParserFilters35</Name>
118+
</ProjectReference>
119+
<ProjectReference Include="..\NDjangoParser\NDjangoParser35.fsproj">
120+
<Project>{B75384C4-C545-4511-A7FE-93D438B8AFA4}</Project>
121+
<Name>NDjangoParser35</Name>
122+
</ProjectReference>
123+
</ItemGroup>
124+
<ItemGroup>
125+
<Folder Include="App_Data\" />
126+
</ItemGroup>
127+
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
128+
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" />
129+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
130+
Other similar extension points exist, see Microsoft.Common.targets.
131+
<Target Name="BeforeBuild">
132+
</Target> -->
133+
<Target Name="AfterBuild" Condition="'$(MvcBuildViews)'=='true'">
134+
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)" />
135+
</Target>
136+
<ProjectExtensions>
137+
<VisualStudio>
138+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
139+
<WebProjectProperties>
140+
<UseIIS>False</UseIIS>
141+
<AutoAssignPort>True</AutoAssignPort>
142+
<DevelopmentServerPort>8415</DevelopmentServerPort>
143+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
144+
<IISUrl>
145+
</IISUrl>
146+
<NTLMAuthentication>False</NTLMAuthentication>
147+
<UseCustomServer>False</UseCustomServer>
148+
<CustomServerUrl>
149+
</CustomServerUrl>
150+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
151+
</WebProjectProperties>
152+
</FlavorProperties>
153+
</VisualStudio>
154+
</ProjectExtensions>
155+
</Project>

0 commit comments

Comments
 (0)