Welcome to mirror list, hosted at ThFree Co, Russian Federation.

System.Net.Http.WinHttpHandler.csproj « src « System.Net.Http.WinHttpHandler « src - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5c41d6279a21ab5b01aac3793606b6fe87f05d5e (plain)
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition="'$(Configuration)'==''">Windows_Debug</Configuration>
  </PropertyGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Windows_Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProjectGuid>{F75E3008-0562-42DF-BE72-C1384F12157E}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AssemblyName>System.Net.Http.WinHttpHandler</AssemblyName>
    <GeneratePlatformNotSupportedAssembly Condition="'$(TargetsUnix)' == 'true'">true</GeneratePlatformNotSupportedAssembly>
    <NuGetTargetMoniker>.NETStandard,Version=v1.3</NuGetTargetMoniker>
  </PropertyGroup>
  <!-- Help VS understand available configurations -->
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Windows_Debug|AnyCPU'" />
  <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Windows_Release|AnyCPU'" />
  <Import Project="System.Net.Http.WinHttpHandler.msbuild" Condition="'$(TargetsWindows)' == 'true'" />
  <ItemGroup Condition="'$(TargetGroup)' == 'net46'">
    <!-- Need to compile it here since the NET46 target here is building against System.Runtime whereas the
         the list of other files in System.Net.Http.WinHttpHandler.msbuild is also used by System.Net.Http
         library and the NET46 target there uses framework assembly references instead. -->
    <CompileItem Include="$(CommonPath)\Microsoft\Win32\SafeHandles\SafeHandleZeroOrMinusOneIsInvalid.cs" />
    <CompileItem Include="$(CommonPath)\System\Net\HttpStatusDescription.cs" />
    <CompileItem Include="$(CommonPath)\System\Net\HttpVersion.cs" />
  </ItemGroup>
  <!--  For source files to be shown within the visual tree in Solution Explorer, the items must be
         included directly in the project file. We have the *.msbuild define the Compile items in a made
         up item called CompileItem and then just include it here. -->
  <ItemGroup Condition=" '$(TargetsWindows)' == 'true' ">
    <Compile Include="@(CompileItem)" />
  </ItemGroup>
  <ItemGroup>
    <None Include="project.json" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>