温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:NBear+NBear开发BBS系统源码
当前文件:
NBBS/IDAL/IDAL.csproj,打开代码结构图
NBBS/IDAL/IDAL.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>{2E4C5E01-06C9-4215-B25C-EA9EC74D1B5E}</ProjectGuid> 8
<OutputType>Library</OutputType> 9
<AppDesignerFolder>Properties</AppDesignerFolder> 10
<RootNamespace>NBBS.IDAL</RootNamespace> 11
<AssemblyName>NBBS.IDAL</AssemblyName> 12
<SccProjectName> 13
</SccProjectName> 14
<SccLocalPath> 15
</SccLocalPath> 16
<SccAuxPath> 17
</SccAuxPath> 18
<SccProvider> 19
</SccProvider> 20
</PropertyGroup> 21
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 22
<DebugSymbols>true</DebugSymbols> 23
<DebugType>full</DebugType> 24
<Optimize>false</Optimize> 25
<OutputPath>bin\Debug\</OutputPath> 26
<DefineConstants>DEBUG;TRACE</DefineConstants> 27
<ErrorReport>prompt</ErrorReport> 28
<WarningLevel>4</WarningLevel> 29
</PropertyGroup> 30
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 31
<DebugType>pdbonly</DebugType> 32
<Optimize>true</Optimize> 33
<OutputPath>bin\Release\</OutputPath> 34
<DefineConstants>TRACE</DefineConstants> 35
<ErrorReport>prompt</ErrorReport> 36
<WarningLevel>4</WarningLevel> 37
</PropertyGroup> 38
<ItemGroup> 39
<Reference Include="System" /> 40
<Reference Include="System.Data" /> 41
<Reference Include="System.Design" /> 42
<Reference Include="System.Web" /> 43
<Reference Include="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> 44
<Reference Include="System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" /> 45
<Reference Include="System.Xml" /> 46
</ItemGroup> 47
<ItemGroup> 48
<Compile Include="IBoardDAL.cs" /> 49
<Compile Include="ILoginDAL.cs" /> 50
<Compile Include="IMotherBoardDAL.cs" /> 51
<Compile Include="IPostDAL.cs" /> 52
<Compile Include="IUserDAL.cs" /> 53
<Compile Include="Properties\AssemblyInfo.cs" /> 54
</ItemGroup> 55
<ItemGroup> 56
<ProjectReference Include="..\Entity\Entity.csproj"> 57
<Project>{E6A5CD08-B1E8-4459-A78A-BEA7FDB9B496}</Project> 58
<Name>Entity</Name> 59
</ProjectReference> 60
</ItemGroup> 61
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 62
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 63
Other similar extension points exist, see Microsoft.Common.targets. 64
<Target Name="BeforeBuild"> 65
</Target> 66
<Target Name="AfterBuild"> 67
</Target> 68
--> 69
</Project>



