温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:多层文章管理系统源码
当前文件:
MultiLayerArticle/SqlServerDAL/SqlServerDAL.csproj,打开代码结构图
MultiLayerArticle/SqlServerDAL/SqlServerDAL.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>{50EF8AED-1BEF-45C8-9E81-6406F22F4DA3}</ProjectGuid> 8
<OutputType>Library</OutputType> 9
<AppDesignerFolder>Properties</AppDesignerFolder> 10
<RootNamespace>SqlServerDAL</RootNamespace> 11
<AssemblyName>SqlServerDAL</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="Admins.cs" /> 41
<Compile Include="ArticleDAL.cs" /> 42
<Compile Include="Properties\AssemblyInfo.cs" /> 43
<Compile Include="Users.cs" /> 44
</ItemGroup> 45
<ItemGroup> 46
<ProjectReference Include="..\DBHelper\DBHelper.csproj"> 47
<Project>{DDDCC917-15E5-46C8-B7A9-FCBE9DDD40D3}</Project> 48
<Name>DBHelper</Name> 49
</ProjectReference> 50
<ProjectReference Include="..\Model\Model.csproj"> 51
<Project>{B46F41CB-9975-47ED-BADE-3A303F069AAA}</Project> 52
<Name>Model</Name> 53
</ProjectReference> 54
</ItemGroup> 55
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 56
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 57
Other similar extension points exist, see Microsoft.Common.targets. 58
<Target Name="BeforeBuild"> 59
</Target> 60
<Target Name="AfterBuild"> 61
</Target> 62
--> 63
</Project>



