-
Notifications
You must be signed in to change notification settings - Fork 13
/
Mono.Net.HttpListener.csproj
executable file
·97 lines (97 loc) · 4.62 KB
/
Mono.Net.HttpListener.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.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)' == '' ">net_4_0_Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B215459F-37FF-411C-8E6B-9CDEDB946F93}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Mono.Net</RootNamespace>
<AssemblyName>Mono.Net.HttpListener</AssemblyName>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Debug|AnyCPU' ">
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\net_4_0_Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;SECURITY_DEP;NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_0_Release|AnyCPU' ">
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\net_4_0_Release\</OutputPath>
<DefineConstants>TRACE;SECURITY_DEP;NET_4_0</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_5_Debug|AnyCPU' ">
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\net_4_5_Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG;SECURITY_DEP;NET_4_0;NET_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'net_4_5_Release|AnyCPU' ">
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\net_4_5_Release\</OutputPath>
<DefineConstants>TRACE;SECURITY_DEP;NET_4_0;NET_4_5</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Security">
<HintPath>libs\Mono.Security.dll</HintPath>
<Aliases>MonoSecurity</Aliases>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Mono.Net\AuthenticationSchemes.cs" />
<Compile Include="Mono.Net\AuthenticationSchemeSelector.cs" />
<Compile Include="Mono.Net\ChunkedInputStream.cs" />
<Compile Include="Mono.Net\ChunkStream.cs" />
<Compile Include="Mono.Net\EndPointListener.cs" />
<Compile Include="Mono.Net\EndPointManager.cs" />
<Compile Include="Mono.Net\Extensions.cs" />
<Compile Include="Mono.Net\HttpConnection.cs" />
<Compile Include="Mono.Net\HttpListener.cs" />
<Compile Include="Mono.Net\HttpListenerBasicIdentity.cs" />
<Compile Include="Mono.Net\HttpListenerContext.cs" />
<Compile Include="Mono.Net\HttpListenerException.cs" />
<Compile Include="Mono.Net\HttpListenerPrefixCollection.cs" />
<Compile Include="Mono.Net\HttpListenerRequest.cs" />
<Compile Include="Mono.Net\HttpListenerResponse.cs" />
<Compile Include="Mono.Net\HttpStreamAsyncResult.cs" />
<Compile Include="Mono.Net\HttpUtility.cs" />
<Compile Include="Mono.Net\ListenerAsyncResult.cs" />
<Compile Include="Mono.Net\ListenerPrefix.cs" />
<Compile Include="Mono.Net\RequestStream.cs" />
<Compile Include="Mono.Net\ResponseStream.cs" />
<Compile Include="Mono.Net\WebHeaderCollection.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Folder Include="libs\" />
</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>