温馨提示:代码在线浏览功能只能做为源码浏览参考,如果想更进一步了解该代码请下载:Asp.net简单饼图XML投票系统源码
当前文件:
VoteXmlPie/XmlVote.csproj,打开代码结构图
VoteXmlPie/XmlVote.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>{4ADA767C-6D18-4807-B704-D7319A410629}</ProjectGuid> 8
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> 9
<OutputType>Library</OutputType> 10
<AppDesignerFolder>Properties</AppDesignerFolder> 11
<RootNamespace>XmlVote</RootNamespace> 12
<AssemblyName>XmlVote</AssemblyName> 13
</PropertyGroup> 14
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 15
<DebugSymbols>true</DebugSymbols> 16
<DebugType>full</DebugType> 17
<Optimize>false</Optimize> 18
<OutputPath>bin\</OutputPath> 19
<DefineConstants>DEBUG;TRACE</DefineConstants> 20
<ErrorReport>prompt</ErrorReport> 21
<WarningLevel>4</WarningLevel> 22
</PropertyGroup> 23
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 24
<DebugType>pdbonly</DebugType> 25
<Optimize>true</Optimize> 26
<OutputPath>bin\</OutputPath> 27
<DefineConstants>TRACE</DefineConstants> 28
<ErrorReport>prompt</ErrorReport> 29
<WarningLevel>4</WarningLevel> 30
</PropertyGroup> 31
<ItemGroup> 32
<Reference Include="System" /> 33
<Reference Include="System.Data" /> 34
<Reference Include="System.Drawing" /> 35
<Reference Include="System.Web" /> 36
<Reference Include="System.Xml" /> 37
<Reference Include="System.Configuration" /> 38
<Reference Include="System.Web.Services" /> 39
<Reference Include="System.EnterpriseServices" /> 40
<Reference Include="System.Web.Mobile" /> 41
</ItemGroup> 42
<ItemGroup> 43
<Content Include="DB_51aspx.xml" /> 44
<Content Include="Default.aspx" /> 45
<Content Include="ShowVote.aspx" /> 46
<Content Include="Vote.aspx" /> 47
<Content Include="Web.config" /> 48
</ItemGroup> 49
<ItemGroup> 50
<Compile Include="Default.aspx.cs"> 51
<SubType>ASPXCodeBehind</SubType> 52
<DependentUpon>Default.aspx</DependentUpon> 53
</Compile> 54
<Compile Include="Default.aspx.designer.cs"> 55
<DependentUpon>Default.aspx</DependentUpon> 56
</Compile> 57
<Compile Include="Properties\AssemblyInfo.cs" /> 58
<Compile Include="ShowVote.aspx.cs"> 59
<SubType>ASPXCodeBehind</SubType> 60
<DependentUpon>ShowVote.aspx</DependentUpon> 61
</Compile> 62
<Compile Include="ShowVote.aspx.designer.cs"> 63
<DependentUpon>ShowVote.aspx</DependentUpon> 64
</Compile> 65
<Compile Include="Vote.aspx.cs"> 66
<SubType>ASPXCodeBehind</SubType> 67
<DependentUpon>Vote.aspx</DependentUpon> 68
</Compile> 69
<Compile Include="Vote.aspx.designer.cs"> 70
<DependentUpon>Vote.aspx</DependentUpon> 71
</Compile> 72
</ItemGroup> 73
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 74
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v8.0\WebApplications\Microsoft.WebApplication.targets" /> 75
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 76
Other similar extension points exist, see Microsoft.Common.targets. 77
<Target Name="BeforeBuild"> 78
</Target> 79
<Target Name="AfterBuild"> 80
</Target> 81
--> 82
<ProjectExtensions> 83
<VisualStudio> 84
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> 85
<WebProjectProperties> 86
<UseIIS>False</UseIIS> 87
<AutoAssignPort>True</AutoAssignPort> 88
<DevelopmentServerPort>3672</DevelopmentServerPort> 89
<DevelopmentServerVPath>/</DevelopmentServerVPath> 90
<IISUrl> 91
</IISUrl> 92
<NTLMAuthentication>False</NTLMAuthentication> 93
</WebProjectProperties> 94
</FlavorProperties> 95
</VisualStudio> 96
</ProjectExtensions> 97
</Project>



