温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Asp.net3.5 MVC入门之文章管理源码
当前文件:
MvcArticleDemo/MvcArticleDemo/MvcArticleDemo.csproj,打开代码结构图
MvcArticleDemo/MvcArticleDemo/MvcArticleDemo.csproj,打开代码结构图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.21022</ProductVersion> 6
<SchemaVersion>2.0</SchemaVersion> 7
<ProjectGuid>{1791CBEE-5A47-4A23-B736-76EE2C1B9F60}</ProjectGuid> 8
<ProjectTypeGuids>{603c0e0b-db56-11dc-be95-000d561079b0};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> 9
<OutputType>Library</OutputType> 10
<AppDesignerFolder>Properties</AppDesignerFolder> 11
<RootNamespace>MvcArticleDemo</RootNamespace> 12
<AssemblyName>MvcArticleDemo</AssemblyName> 13
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> 14
</PropertyGroup> 15
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 16
<DebugSymbols>true</DebugSymbols> 17
<DebugType>full</DebugType> 18
<Optimize>false</Optimize> 19
<OutputPath>bin\</OutputPath> 20
<DefineConstants>DEBUG;TRACE</DefineConstants> 21
<ErrorReport>prompt</ErrorReport> 22
<WarningLevel>4</WarningLevel> 23
</PropertyGroup> 24
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 25
<DebugType>pdbonly</DebugType> 26
<Optimize>true</Optimize> 27
<OutputPath>bin\</OutputPath> 28
<DefineConstants>TRACE</DefineConstants> 29
<ErrorReport>prompt</ErrorReport> 30
<WarningLevel>4</WarningLevel> 31
</PropertyGroup> 32
<ItemGroup> 33
<Reference Include="System" /> 34
<Reference Include="System.Data" /> 35
<Reference Include="System.Core"> 36
<RequiredTargetFramework>3.5</RequiredTargetFramework> 37
</Reference> 38
<Reference Include="System.Data.DataSetExtensions"> 39
<RequiredTargetFramework>3.5</RequiredTargetFramework> 40
</Reference> 41
<Reference Include="System.Data.Linq"> 42
<RequiredTargetFramework>3.5</RequiredTargetFramework> 43
</Reference> 44
<Reference Include="System.Web.Abstractions, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> 45
<SpecificVersion>False</SpecificVersion> 46
<HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC Preview 3\Assemblies\System.Web.Abstractions.dll</HintPath> 47
</Reference> 48
<Reference Include="System.Web.Mvc, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> 49
<SpecificVersion>False</SpecificVersion> 50
<HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC Preview 3\Assemblies\System.Web.Mvc.dll</HintPath> 51
</Reference> 52
<Reference Include="System.Web.Routing, Version=0.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> 53
<SpecificVersion>False</SpecificVersion> 54
<HintPath>C:\Program Files\Microsoft ASP.NET\ASP.NET MVC Preview 3\Assemblies\System.Web.Routing.dll</HintPath> 55
</Reference> 56
<Reference Include="System.Xml.Linq"> 57
<RequiredTargetFramework>3.5</RequiredTargetFramework> 58
</Reference> 59
<Reference Include="System.Drawing" /> 60
<Reference Include="System.Web" /> 61
<Reference Include="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> 62
<Reference Include="System.Xml" /> 63
<Reference Include="System.Configuration" /> 64
<Reference Include="System.Web.Services" /> 65
<Reference Include="System.EnterpriseServices" /> 66
<Reference Include="System.Web.Mobile" /> 67
</ItemGroup> 68
<ItemGroup> 69
<Compile Include="Controllers\ArticleController.cs" /> 70
<Compile Include="Controllers\HomeController.cs" /> 71
<Compile Include="Default.aspx.cs"> 72
<DependentUpon>Default.aspx</DependentUpon> 73
<SubType>ASPXCodeBehind</SubType> 74
</Compile> 75
<Compile Include="Global.asax.cs"> 76
<DependentUpon>Global.asax</DependentUpon> 77
</Compile> 78
<Compile Include="Models\ArticleDemo.designer.cs"> 79
<AutoGen>True</AutoGen> 80
<DesignTime>True</DesignTime> 81
<DependentUpon>ArticleDemo.dbml</DependentUpon> 82
</Compile> 83
<Compile Include="Models\ArticleDemoDataContext.cs" /> 84
<Compile Include="Models\ArticlesViewData.cs" /> 85
<Compile Include="Properties\AssemblyInfo.cs" /> 86
<Compile Include="Views\Article\ArticleList.aspx.cs"> 87
<DependentUpon>ArticleList.aspx</DependentUpon> 88
<SubType>ASPXCodeBehind</SubType> 89
</Compile> 90
<Compile Include="Views\Article\ArticleList.aspx.designer.cs"> 91
<DependentUpon>ArticleList.aspx</DependentUpon> 92
</Compile> 93
<Compile Include="Views\Article\Detail.aspx.cs"> 94
<DependentUpon>Detail.aspx</DependentUpon> 95
<SubType>ASPXCodeBehind</SubType> 96
</Compile> 97
<Compile Include="Views\Article\Detail.aspx.designer.cs"> 98
<DependentUpon>Detail.aspx</DependentUpon> 99
</Compile> 100
<Compile Include="Views\Article\EditCategory.aspx.cs"> 101
<DependentUpon>EditCategory.aspx</DependentUpon> 102
<SubType>ASPXCodeBehind</SubType> 103
</Compile> 104
<Compile Include="Views\Article\EditCategory.aspx.designer.cs"> 105
<DependentUpon>EditCategory.aspx</DependentUpon> 106
</Compile> 107
<Compile Include="Views\Article\NewCategory.aspx.cs"> 108
<DependentUpon>NewCategory.aspx</DependentUpon> 109
<SubType>ASPXCodeBehind</SubType> 110
</Compile> 111
<Compile Include="Views\Article\NewCategory.aspx.designer.cs"> 112
<DependentUpon>NewCategory.aspx</DependentUpon> 113
</Compile> 114
<Compile Include="Views\Article\NewNews.aspx.cs"> 115
<DependentUpon>NewNews.aspx</DependentUpon> 116
<SubType>ASPXCodeBehind</SubType> 117
</Compile> 118
<Compile Include="Views\Article\NewNews.aspx.designer.cs"> 119
<DependentUpon>NewNews.aspx</DependentUpon> 120
</Compile> 121
<Compile Include="Views\Home\About.aspx.cs"> 122
<DependentUpon>About.aspx</DependentUpon> 123
<SubType>ASPXCodeBehind</SubType> 124
</Compile> 125
<Compile Include="Views\Home\About.aspx.designer.cs"> 126
<DependentUpon>About.aspx</DependentUpon> 127
</Compile> 128
<Compile Include="Views\Home\Index.aspx.cs"> 129
<DependentUpon>Index.aspx</DependentUpon> 130
<SubType>ASPXCodeBehind</SubType> 131
</Compile> 132
<Compile Include="Views\Home\Index.aspx.designer.cs"> 133
<DependentUpon>Index.aspx</DependentUpon> 134
</Compile> 135
<Compile Include="Views\Shared\Site.Master.cs"> 136
<DependentUpon>Site.Master</DependentUpon> 137
<SubType>ASPXCodeBehind</SubType> 138
</Compile> 139
<Compile Include="Views\Shared\Site.Master.designer.cs"> 140
<DependentUpon>Site.Master</DependentUpon> 141
</Compile> 142
</ItemGroup> 143
<ItemGroup> 144
<Content Include="Default.aspx" /> 145
<Content Include="Global.asax" /> 146
<Content Include="Views\Article\ArticleList.aspx" /> 147
<Content Include="Views\Article\Detail.aspx" /> 148
<Content Include="Views\Article\EditCategory.aspx" /> 149
<Content Include="Views\Article\NewCategory.aspx" /> 150
<Content Include="Views\Article\NewNews.aspx" /> 151
<Content Include="Web.config" /> 152
<Content Include="Content\Site.css" /> 153
<Content Include="Views\Home\About.aspx" /> 154
<Content Include="Views\Home\Index.aspx" /> 155
<Content Include="Views\Shared\Site.Master" /> 156
<Content Include="Views\Web.config" /> 157
</ItemGroup> 158
<ItemGroup> 159
<None Include="Models\ArticleDemo.dbml"> 160
<Generator>MSLinqToSQLGenerator</Generator> 161
<LastGenOutput>ArticleDemo.designer.cs</LastGenOutput> 162
<SubType>Designer</SubType> 163
</None> 164
</ItemGroup> 165
<ItemGroup> 166
<Service Include="{3259AA49-8AA1-44D3-9025-A0B520596A8C}" /> 167
</ItemGroup> 168
<ItemGroup> 169
<None Include="Models\ArticleDemo.dbml.layout"> 170
<DependentUpon>ArticleDemo.dbml</DependentUpon> 171
</None> 172
</ItemGroup> 173
<ItemGroup> 174
<Folder Include="App_Data\" /> 175
</ItemGroup> 176
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 177
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v9.0\WebApplications\Microsoft.WebApplication.targets" /> 178
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 179
Other similar extension points exist, see Microsoft.Common.targets. 180
<Target Name="BeforeBuild"> 181
</Target> 182
<Target Name="AfterBuild"> 183
</Target> 184
--> 185
<ProjectExtensions> 186
<VisualStudio> 187
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> 188
<WebProjectProperties> 189
<UseIIS>False</UseIIS> 190
<AutoAssignPort>True</AutoAssignPort> 191
<DevelopmentServerPort>1058</DevelopmentServerPort> 192
<DevelopmentServerVPath>/</DevelopmentServerVPath> 193
<IISUrl> 194
</IISUrl> 195
<NTLMAuthentication>False</NTLMAuthentication> 196
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile> 197
</WebProjectProperties> 198
</FlavorProperties> 199
</VisualStudio> 200
</ProjectExtensions> 201
</Project>



