-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPacket.Handlers.csproj
121 lines (121 loc) · 5.14 KB
/
Packet.Handlers.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{55726991-9C26-42E6-96C1-2EA332B1B6B2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Packet.Handlers</RootNamespace>
<AssemblyName>Packet.Handlers</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ChainingHttpRequestHandler.cs" />
<Compile Include="DynamicPageHttpRequestHandler.cs" />
<Compile Include="ErrorPageContentRetriever.cs" />
<Compile Include="ExpressionTreeSource.cs" />
<Compile Include="ForbiddenHttpRequestHandler.cs" />
<Compile Include="FullHttpResponse.cs" />
<Compile Include="HttpMethodHelper.cs" />
<Compile Include="HttpRequestConverter.cs" />
<Compile Include="HttpRequestHandler.cs" />
<Compile Include="HttpResponse.cs" />
<Compile Include="HttpVersion.cs" />
<Compile Include="NotFoundHttpRequestHandler.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="ReasonPhraseHelper.cs" />
<Compile Include="SimpleHttpResponse.cs" />
<Compile Include="StaticFileHttpRequestHandler.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Crisp.Enums\Crisp.Enums.csproj">
<Project>{d935e594-c506-4b9e-bf71-684e7f1a1560}</Project>
<Name>Crisp.Enums</Name>
</ProjectReference>
<ProjectReference Include="..\Crisp.Interfaces\Crisp.Interfaces.csproj">
<Project>{12b92742-736f-4502-bd77-fcfb81e7b53c}</Project>
<Name>Crisp.Interfaces</Name>
</ProjectReference>
<ProjectReference Include="..\Crisp.IoC\Crisp.IoC.csproj">
<Project>{e649520c-1798-4a3f-a0ee-20ac5873a14f}</Project>
<Name>Crisp.IoC</Name>
</ProjectReference>
<ProjectReference Include="..\Crisp.Shared\Crisp.Shared.csproj">
<Project>{037d2ac9-aca7-42ac-9566-35502f855e7d}</Project>
<Name>Crisp.Shared</Name>
</ProjectReference>
<ProjectReference Include="..\Crisp.Types\Crisp.Types.csproj">
<Project>{9b480f6e-e40a-4255-a0a6-5fc016a9c673}</Project>
<Name>Crisp.Types</Name>
</ProjectReference>
<ProjectReference Include="..\Packet.Enums\Packet.Enums.csproj">
<Project>{d1462d1b-d954-49f0-b45d-c27b06d02776}</Project>
<Name>Packet.Enums</Name>
</ProjectReference>
<ProjectReference Include="..\Packet.Interfaces\Packet.Interfaces.csproj">
<Project>{71c6a9c3-8606-4b4c-a6da-10c742174199}</Project>
<Name>Packet.Interfaces</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="Resources\DefaultErrorPage_400.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\DefaultErrorPage_403.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\DefaultErrorPage_404.txt" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\DefaultErrorPage_500.txt" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>