温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:多层文章管理系统源码
当前文件:
MultiLayerArticle/Model/Model.csproj,打开代码结构图
MultiLayerArticle/Model/Model.csproj,打开代码结构图1<Project 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>8.0.50727</ProductVersion> 6
<SchemaVersion>2.0</SchemaVersion> 7
<ProjectGuid>{B46F41CB-9975-47ED-BADE-3A303F069AAA}</ProjectGuid> 8
<OutputType>Library</OutputType> 9
<AppDesignerFolder>Properties</AppDesignerFolder> 10
<RootNamespace>Model</RootNamespace> 11
<AssemblyName>Model</AssemblyName> 12
<SccProjectName>SAK</SccProjectName> 13
<SccLocalPath>SAK</SccLocalPath> 14
<SccAuxPath>SAK</SccAuxPath> 15
<SccProvider>SAK</SccProvider> 16
</PropertyGroup> 17
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 18
<DebugSymbols>true</DebugSymbols> 19
<DebugType>full</DebugType> 20
<Optimize>false</Optimize> 21
<OutputPath>bin\Debug\</OutputPath> 22
<DefineConstants>DEBUG;TRACE</DefineConstants> 23
<ErrorReport>prompt</ErrorReport> 24
<WarningLevel>4</WarningLevel> 25
</PropertyGroup> 26
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 27
<DebugType>pdbonly</DebugType> 28
<Optimize>true</Optimize> 29
<OutputPath>bin\Release\</OutputPath> 30
<DefineConstants>TRACE</DefineConstants> 31
<ErrorReport>prompt</ErrorReport> 32
<WarningLevel>4</WarningLevel> 33
</PropertyGroup> 34
<ItemGroup> 35
<Reference Include="System" /> 36
<Reference Include="System.Data" /> 37
<Reference Include="System.Xml" /> 38
</ItemGroup> 39
<ItemGroup> 40
<Compile Include="ArticleCollection.cs" /> 41
<Compile Include="ArticleModel.cs" /> 42
<Compile Include="ArticleTypeCollection.cs" /> 43
<Compile Include="ArticleTypeModel.cs" /> 44
<Compile Include="Properties\AssemblyInfo.cs" /> 45
<Compile Include="UsersModel.cs" /> 46
</ItemGroup> 47
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 48
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 49
Other similar extension points exist, see Microsoft.Common.targets. 50
<Target Name="BeforeBuild"> 51
</Target> 52
<Target Name="AfterBuild"> 53
</Target> 54
--> 55
</Project>



