温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:HuGo版文章发布系统(三层MVC模式)
当前文件:
HuGoMvcArticle/Common/Common.csproj[2K,2009-6-12 11:44:47],打开代码结构图
HuGoMvcArticle/Common/Common.csproj[2K,2009-6-12 11:44:47],打开代码结构图1<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="3.5"> 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>{B809AF5E-DC1D-4A18-AEBD-4EB57D181ED3}</ProjectGuid> 8
<OutputType>Library</OutputType> 9
<AppDesignerFolder>Properties</AppDesignerFolder> 10
<RootNamespace>Common</RootNamespace> 11
<AssemblyName>Common</AssemblyName> 12
<FileUpgradeFlags> 13
</FileUpgradeFlags> 14
<UpgradeBackupLocation> 15
</UpgradeBackupLocation> 16
<OldToolsVersion>2.0</OldToolsVersion> 17
</PropertyGroup> 18
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 19
<DebugSymbols>true</DebugSymbols> 20
<DebugType>full</DebugType> 21
<Optimize>false</Optimize> 22
<OutputPath>bin\Debug\</OutputPath> 23
<DefineConstants>DEBUG;TRACE</DefineConstants> 24
<ErrorReport>prompt</ErrorReport> 25
<WarningLevel>4</WarningLevel> 26
</PropertyGroup> 27
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 28
<DebugType>pdbonly</DebugType> 29
<Optimize>true</Optimize> 30
<OutputPath>bin\Release\</OutputPath> 31
<DefineConstants>TRACE</DefineConstants> 32
<ErrorReport>prompt</ErrorReport> 33
<WarningLevel>4</WarningLevel> 34
</PropertyGroup> 35
<ItemGroup> 36
<Reference Include="System" /> 37
<Reference Include="System.configuration" /> 38
<Reference Include="System.Data" /> 39
<Reference Include="System.Drawing" /> 40
<Reference Include="System.Web" /> 41
<Reference Include="System.Xml" /> 42
</ItemGroup> 43
<ItemGroup> 44
<Compile Include="Article.cs" /> 45
<Compile Include="Fun.cs" /> 46
<Compile Include="MessageBox.cs" /> 47
<Compile Include="Patterns.cs" /> 48
<Compile Include="Properties\AssemblyInfo.cs" /> 49
<Compile Include="Role.cs" /> 50
<Compile Include="User.cs" /> 51
</ItemGroup> 52
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 53
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 54
Other similar extension points exist, see Microsoft.Common.targets. 55
<Target Name="BeforeBuild"> 56
</Target> 57
<Target Name="AfterBuild"> 58
</Target> 59
--> 60
</Project>




