forked from aspnet/AspNetWebStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSystem.Web.Http.SelfHost.csproj
More file actions
123 lines (123 loc) · 5.89 KB
/
System.Web.Http.SelfHost.csproj
File metadata and controls
123 lines (123 loc) · 5.89 KB
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
122
123
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory),Runtime.sln))\tools\WebStack.settings.targets" />
<PropertyGroup>
<ProjectGuid>{66492E69-CE4C-4FB1-9B1F-88DEE09D06F1}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>System.Web.Http.SelfHost</RootNamespace>
<AssemblyName>System.Web.Http.SelfHost</AssemblyName>
<DocumentationFile>$(OutputPath)$(AssemblyName).xml</DocumentationFile>
<RunCodeAnalysis>$(CodeAnalysis)</RunCodeAnalysis>
<CodeAnalysisRuleSet>..\Strict.ruleset</CodeAnalysisRuleSet>
<DefineConstants>$(DefineConstants);ASPNETMVC</DefineConstants>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Configuration" />
<Reference Include="System.Core" />
<Reference Include="System.IdentityModel" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\CommonAssemblyInfo.cs">
<Link>Properties\CommonAssemblyInfo.cs</Link>
</Compile>
<Compile Include="..\Common\DictionaryExtensions.cs">
<Link>Common\DictionaryExtensions.cs</Link>
</Compile>
<Compile Include="..\Common\Error.cs">
<Link>Common\Error.cs</Link>
</Compile>
<Compile Include="..\Common\HttpMethodHelper.cs">
<Link>Common\HttpMethodHelper.cs</Link>
</Compile>
<Compile Include="..\Common\TaskHelpers.cs">
<Link>Common\TaskHelpers.cs</Link>
</Compile>
<Compile Include="..\Common\TaskHelpersExtensions.cs">
<Link>Common\TaskHelpersExtensions.cs</Link>
</Compile>
<Compile Include="HttpRequestMessageExtensions.cs" />
<Compile Include="Properties\SRResources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>SRResources.resx</DependentUpon>
</Compile>
<Compile Include="Channels\HttpMessage.cs" />
<Compile Include="Channels\HttpMessageEncoderFactory.cs" />
<Compile Include="Channels\HttpMessageEncodingBindingElement.cs" />
<Compile Include="Channels\HttpMessageEncodingChannelListener.cs" />
<Compile Include="Channels\HttpMessageEncodingReplyChannel.cs" />
<Compile Include="Channels\HttpMessageEncodingRequestContext.cs" />
<Compile Include="Channels\HttpMessageExtensions.cs" />
<Compile Include="Channels\HttpBinding.cs" />
<Compile Include="Channels\HttpBindingSecurity.cs" />
<Compile Include="Channels\HttpBindingSecurityMode.cs" />
<Compile Include="Channels\HttpBindingSecurityModeHelper.cs" />
<Compile Include="HttpSelfHostConfiguration.cs" />
<Compile Include="HttpSelfHostServer.cs" />
<Compile Include="SelfHostHttpRequestContext.cs" />
<Compile Include="ServiceModel\Channels\AsyncResult.cs" />
<Compile Include="ServiceModel\Channels\BufferedOutputStream.cs" />
<Compile Include="ServiceModel\Channels\BufferManagerOutputStream.cs" />
<Compile Include="ServiceModel\Channels\ChannelAcceptor.cs" />
<Compile Include="ServiceModel\Channels\ChannelBindingUtility.cs" />
<Compile Include="ServiceModel\Channels\CompletedAsyncResult.cs" />
<Compile Include="ServiceModel\Channels\HttpTransportDefaults.cs" />
<Compile Include="ServiceModel\Channels\IChannelAcceptor.cs" />
<Compile Include="ServiceModel\Channels\LayeredChannel.cs" />
<Compile Include="ServiceModel\Channels\LayeredChannelAcceptor.cs" />
<Compile Include="ServiceModel\Channels\LayeredChannelListener.cs" />
<Compile Include="ServiceModel\Channels\TransportDefaults.cs" />
<Compile Include="ServiceModel\Channels\CompletedAsyncResultOfT.cs" />
<Compile Include="ServiceModel\HostNameComparisonModeHelper.cs" />
<Compile Include="ServiceModel\HttpClientCredentialTypeHelper.cs" />
<Compile Include="ServiceModel\HttpProxyCredentialTypeHelper.cs" />
<Compile Include="ServiceModel\HttpTransportSecurityExtensionMethods.cs" />
<Compile Include="ServiceModel\TransferModeHelper.cs" />
<Compile Include="GlobalSuppressions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\Common\CommonWebApiResources.Designer.cs">
<Link>Properties\CommonWebApiResources.Designer.cs</Link>
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>CommonWebApiResources.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="..\Common\CommonWebApiResources.resx">
<Link>Properties\CommonWebApiResources.resx</Link>
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>CommonWebApiResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\SRResources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>SRResources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\System.Net.Http.Formatting\System.Net.Http.Formatting.csproj">
<Project>{668E9021-CE84-49D9-98FB-DF125A9FCDB0}</Project>
<Name>System.Net.Http.Formatting</Name>
</ProjectReference>
<ProjectReference Include="..\System.Web.Http\System.Web.Http.csproj">
<Project>{DDC1CE0C-486E-4E35-BB3B-EAB61F8F9440}</Project>
<Name>System.Web.Http</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<CodeAnalysisDictionary Include="..\CodeAnalysisDictionary.xml">
<Link>CodeAnalysisDictionary.xml</Link>
</CodeAnalysisDictionary>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>