温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:Asp.net实现网站截图(WebSnap)功能源码
当前文件路径:WebSnap/Snap/Snap.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>{605869FC-2261-4C0F-BFE7-B42410E834CE}</ProjectGuid> 8
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids> 9
<OutputType>Library</OutputType> 10
<AppDesignerFolder>Properties</AppDesignerFolder> 11
<RootNamespace>Snap</RootNamespace> 12
<AssemblyName>Snap</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.Windows.Forms" /> 37
<Reference Include="System.Xml" /> 38
<Reference Include="System.Configuration" /> 39
<Reference Include="System.Web.Services" /> 40
<Reference Include="System.EnterpriseServices" /> 41
<Reference Include="System.Web.Mobile" /> 42
</ItemGroup> 43
<ItemGroup> 44
<Content Include="Default.aspx" /> 45
<Content Include="Snap.aspx" /> 46
<Content Include="Web.config" /> 47
</ItemGroup> 48
<ItemGroup> 49
<Compile Include="Default.aspx.cs"> 50
<SubType>ASPXCodeBehind</SubType> 51
<DependentUpon>Default.aspx</DependentUpon> 52
</Compile> 53
<Compile Include="Default.aspx.designer.cs"> 54
<DependentUpon>Default.aspx</DependentUpon> 55
</Compile> 56
<Compile Include="GetImage.cs" /> 57
<Compile Include="Properties\AssemblyInfo.cs" /> 58
<Compile Include="Snap.aspx.cs"> 59
<SubType>ASPXCodeBehind</SubType> 60
<DependentUpon>Snap.aspx</DependentUpon> 61
</Compile> 62
<Compile Include="Snap.aspx.designer.cs"> 63
<DependentUpon>Snap.aspx</DependentUpon> 64
</Compile> 65
</ItemGroup> 66
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 67
<Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v8.0\WebApplications\Microsoft.WebApplication.targets" /> 68
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. 69
Other similar extension points exist, see Microsoft.Common.targets. 70
<Target Name="BeforeBuild"> 71
</Target> 72
<Target Name="AfterBuild"> 73
</Target> 74
--> 75
<ProjectExtensions> 76
<VisualStudio> 77
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}"> 78
<WebProjectProperties> 79
<UseIIS>False</UseIIS> 80
<AutoAssignPort>True</AutoAssignPort> 81
<DevelopmentServerPort>4895</DevelopmentServerPort> 82
<DevelopmentServerVPath>/</DevelopmentServerVPath> 83
<IISUrl> 84
</IISUrl> 85
<NTLMAuthentication>False</NTLMAuthentication> 86
</WebProjectProperties> 87
</FlavorProperties> 88
</VisualStudio> 89
</ProjectExtensions> 90
</Project>



