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



